* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --font-heading: 'Clash Display', sans-serif;
    --font-body: 'General Sans', sans-serif;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-maroon: #8B0000;
}

body {
    font-family: var(--font-body);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Promotional Banner */
.promo-banner {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 14px;
}

.promo-banner.hidden {
    display: none;
}

.promo-banner p {
    margin: 0;
    font-family: var(--font-body);
}

.promo-banner a {
    color: var(--color-white);
    text-decoration: underline;
    margin-left: 5px;
}

.close-banner {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header */

.logo-nav{
    max-width: 100px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.header {
    padding: 20px 0;
    border-bottom: 1px solid #E5E5E5;
    position: relative;
    z-index: 1002;
    background-color: var(--color-white);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-black);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-black);
    font-family: var(--font-body);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    font-size: 10px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-bar {
    display: flex;
    align-items: center;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    padding: 8px 12px;
    gap: 8px;
}

.search-bar input {
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 14px;
    width: 200px;
}

.search-bar svg {
    color: #666;
}

.icon-button {
    cursor: pointer;
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--color-black);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-white);
    z-index: 1001;
    padding-top: 100px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
}

.mobile-nav-link {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--color-black);
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid #E5E5E5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Hero Section */
.hero {
    padding: 20px 0;
    background-color: #F2F0F1;
    height: 100vh;
}

.hero-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text {
    position: relative;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-black);
}

.hero-text p {
    font-family: var(--font-body);
    font-size: 16px;
    margin-bottom: 32px;
    color: #5f5f5f;
    line-height: 22px;
}

.btn-primary {
    background-color: var(--color-black);
    color: var(--color-white);
    border: none;
    padding: 16px 54px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 62px;
    transition: opacity 0.3s;
}



.btn-primary:hover {
    opacity: 0.9;
}

.decorative-stars {
    position: absolute;
    top: 0;
    right: -40px;
}

.star {
    display: block;
    color: var(--color-black);
    font-size: 20px;
    margin-bottom: 10px;
}

.hero-image {
    max-width: 700px;
    height: 700px;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 100px;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* behaves like background-size: cover */
    display: block;
}

.hero-image-placeholder {
    width: 100%;
    height: 300px;
    background: #F5F5F5;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.model-pair {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 20px;
}

.model {
    width: 200px;
    height: 400px;
    background: linear-gradient(180deg, #E0E0E0 0%, #C0C0C0 100%);
    border-radius: 8px;
    position: relative;
}

.model-female {
    transform: translateX(-20px);
}

.model-male {
    transform: translateX(20px);
}

/* Products Section */
.products-section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-black);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 40px;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    background-color: #F5F5F5;
    border-radius: 8px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.black-hoodie {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.black-hoodie::after {
    content: 'POSHE';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
}

.maroon-hoodie {
    background: linear-gradient(135deg, #8B0000 0%, #A00000 100%);
}

.product-image-wrapper {
  position: relative;
}

.top-seller-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff3b3b;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  z-index: 2;
}


.maroon-hoodie::after {
    content: 'POSHE';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
}

.product-info {
    text-align: left;
    max-width: 170px;
}

.product-info-wrapper{
    display: flex;
    align-items: start;
    justify-content: space-between;

}

.product-name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-black);
}

.product-price {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-black);
}

.section-action {
    text-align: center;
}

.btn-secondary {
    background-color: var(--color-black);
    color: var(--color-white);
    border: none;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 50px;
    transition: opacity 0.3s;
}
.buy-button {
    background-color: var(--color-black);
    color: var(--color-white);
    border: none;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 50px;
    transition: opacitybuy 0.3s;
}
#sold-out {
    background-color:red;
}



.btn-secondary:hover {
    opacity: 0.9;
}

/* Browse Section */
.browse-section {
    padding: 80px 0;
    background-color: #F0F0F0;
}

.browse-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.browse-card {
    position: relative;
    min-height: 674px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #F5F5F5;
}

.browse-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

.hoodie-style {
    background: linear-gradient(135deg, #8B0000 0%, #A00000 100%);
}

.hoodie-style::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.pants-style {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.pants-style::after {
    content: 'POSHE';
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
}

.browse-title {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-black);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 4px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-btn {
    background: none;
    border: 1px solid #E5E5E5;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    transition: all 0.3s;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

.testimonials-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    max-width: 400px;
    background-color: #F9F9F9;
    padding: 30px;
    border-radius: 8px;
    flex-shrink: 0;
}

.stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--color-black);
}

.testimonial-author {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 60px 0;
}

.newsletter-title-wrapper{
    max-width: 624px;
    width: 100%;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 45px;
    font-weight: 700;
    flex: 1;
    line-height: 45px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 349px;
    width: 100%;
}

.newsletter-input {
    padding: 12px 16px;
    border: 1px solid #333;
    background-color: var(--color-white);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    border-radius: 50px;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-btn{
    background-color:var(--color-white);
    color: var(--color-black);
    border: none;
    padding: 16px 54px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 62px;
    transition: opacity 0.3s;
}

/* Footer */
.footer {
    background-color: #F9F9F9;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    max-width:100px;
    width: 100%;
    object-fit: cover;
}

.footer-description {
    font-family: var(--font-body);
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    color: var(--color-black);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.7;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-black);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-black);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #E5E5E5;
}

.copyright {
    font-family: var(--font-body);
    font-size: 14px;
    color: #666;
}

.payment-methods {
    display: flex;
    gap: 12px;
}

.payment-icon {
    font-family: var(--font-body);
    font-size: 12px;
    color: #666;
    padding: 6px 12px;
    background-color: var(--color-white);
    border: 1px solid #E5E5E5;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        gap: 20px;
    }

    .hero-image{
        margin-top: 0;
    }

    .decorative-stars .star{
        display: none;
    }

    .hero{
        height: auto;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-image{
        margin-top: 0;
    }

    #nav-button{
       display: none; 
    }

    .logo-nav{
        max-width: 80px;
    }


    .hero {
    padding: 20px 0px 0px 0px;
    background-color: #F2F0F1;
    height: auto;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }

    .model {
    max-width: 200px;
    min-height: 400px;
    }
    .model-pair {
    gap: 10px;
    }

    
    .search-bar {
        display: none;
    }
    
    .header-actions {
        gap: 15px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .browse-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

