/* ==========================================================================
   UrbanOriginals.store - Rabanne-Inspired Luxury Design
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@300;400;500;600;700&display=swap');

/* -------------------------------------------------------------------------- */
/*                                  VARIABLES                                 */
/* -------------------------------------------------------------------------- */
:root {
    /* Rabanne Color Palette - White & Gold Theme */
    --pure-white: #FFFFFF;
    --text-black: #000000;
    --text-gray: #666666;
    --gold-accent: #D4AF37;
    --gold-light: #E6C547;
    --border-light: #E5E5E5;
    --background: #FFFFFF;
    
    /* Additional Variables */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F8F8;
    --text-primary: #000000;
    --text-secondary: #666666;
    --primary-color: #D4AF37;
    --gradient-primary: linear-gradient(135deg, #D4AF37 0%, #E6C547 100%);
    --gradient-light: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --section-padding: 8rem 0;
    --container-max: 1400px;
    
    /* Transitions */
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* -------------------------------------------------------------------------- */
/*                                BASE & RESET                                */
/* -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--background);
    color: var(--text-black);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-black);
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

a {
    color: var(--text-black);
    text-decoration: none;
    transition: color var(--transition-smooth);
}

a:hover {
    color: var(--gold-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* -------------------------------------------------------------------------- */
/*                                BREADCRUMBS                                 */
/* -------------------------------------------------------------------------- */
.breadcrumb-nav {
    background: var(--bg-secondary);
    padding: 1rem 0;
    margin-top: 80px;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: var(--text-gray);
    opacity: 0.5;
}

.breadcrumb-item a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color var(--transition-smooth);
}

.breadcrumb-item a:hover {
    color: var(--gold-accent);
}

.breadcrumb-item.active span {
    color: var(--text-black);
    font-weight: 500;
}

/* -------------------------------------------------------------------------- */
/*                                 COMPONENTS                                 */
/* -------------------------------------------------------------------------- */

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    border: 1px solid var(--text-black);
    background: transparent;
    color: var(--text-black);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text-black);
    transition: left var(--transition-smooth);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    color: var(--pure-white);
}

.btn-primary {
    background: var(--text-black);
    color: var(--pure-white);
    border-color: var(--text-black);
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-black);
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-gray);
}

/* -------------------------------------------------------------------------- */
/*                                   HEADER                                   */
/* -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition-smooth);
    padding: 2rem 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

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

.logo {
    text-decoration: none;
}

.logo-image {
    height: 40px;
    object-fit: contain;
}

.desktop-nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.desktop-nav-menu a {
    color: var(--text-black);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    transition: color var(--transition-smooth);
}

.desktop-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-accent);
    transition: width var(--transition-smooth);
}

.desktop-nav-menu a:hover::after {
    width: 100%;
}

.desktop-nav-menu a:hover {
    color: var(--gold-accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cart-icon {
    position: relative;
    font-size: 1.3rem;
    color: var(--text-black);
    transition: color var(--transition-smooth);
}

.cart-icon:hover {
    color: var(--gold-accent);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold-accent);
    color: var(--text-black);
    font-size: 0.7rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-black);
    margin: 5px 0;
    transition: all var(--transition-smooth);
    border-radius: 1px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    z-index: 1001;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-menu a {
    color: var(--text-black);
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: color var(--transition-smooth);
}

.mobile-nav-menu a:hover {
    color: var(--gold-accent);
}

.mobile-nav-menu a:last-child {
    border-bottom: none;
}

/* -------------------------------------------------------------------------- */
/*                                    HERO                                    */
/* -------------------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 120px; /* Increased margin to position hero further below navigation */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    height: 600px;
}

.product-showcase-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: transform var(--transition-smooth);
}

.product-showcase-item:hover {
    transform: scale(1.02);
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.product-showcase-item:hover .showcase-img {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--pure-white);
    padding: 3rem 2rem 2rem;
    transform: translateY(100%);
    transition: transform var(--transition-smooth);
}

.product-showcase-item:hover .showcase-overlay {
    transform: translateY(0);
}

.showcase-overlay span {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hero Decoration */
.hero-decoration {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 3;
    opacity: 0.1;
    pointer-events: none;
}

.hideout-svg {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: all var(--transition-smooth);
}

.hero-decoration:hover .hideout-svg {
    opacity: 0.2;
    transform: scale(1.05);
}

/* -------------------------------------------------------------------------- */
/*                                 CATEGORIES                                 */
/* -------------------------------------------------------------------------- */
.categories {
    padding: var(--section-padding);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.category-card {
    position: relative;
    overflow: hidden;
    height: 500px;
    border: 1px solid var(--border-light);
    transition: transform var(--transition-smooth);
}

.category-card:hover {
    transform: scale(1.02);
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.category-card:hover .category-img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: var(--pure-white);
}

.category-content h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.category-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.shop-now {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-accent);
    display: inline-block;
    transition: color var(--transition-smooth);
}

.shop-now:hover {
    color: var(--gold-light);
}

/* -------------------------------------------------------------------------- */
/*                              FEATURED PRODUCTS                             */
/* -------------------------------------------------------------------------- */
.featured-products {
    padding: var(--section-padding);
    background: var(--pure-white);
}

.featured-tabs {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: color var(--transition-smooth);
    padding: 0.5rem 0;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-accent);
    transition: width var(--transition-smooth);
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--text-black);
}

.tab-btn.active::after,
.tab-btn:hover::after {
    width: 100%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.product-card {
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: transform var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    position: relative;
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .add-to-cart-btn,
.product-overlay .view-details {
    padding: 1rem 2rem;
    background: var(--pure-white);
    color: var(--text-black);
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-decoration: none;
    text-align: center;
    min-width: 180px;
}

.product-overlay .add-to-cart-btn:hover,
.product-overlay .view-details:hover {
    background: var(--gold-accent);
    color: var(--text-black);
}

.product-info {
    padding: 2rem;
    text-align: center;
}

.product-name, .product-title {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    color: var(--gold-accent);
    margin-bottom: 0;
}

.product-price {
    font-size: 1.5rem;
    color: var(--gold-accent);
    margin-bottom: 0;
}

.add-to-cart-btn, .view-details {
    width: auto;
    padding: 1rem 2rem;
    background: var(--pure-white);
    color: var(--text-black);
    border: 1px solid var(--text-black);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-decoration: none;
    text-align: center;
}

.add-to-cart-btn:hover, .view-details:hover {
    background: var(--text-black);
    color: var(--pure-white);
}

/* -------------------------------------------------------------------------- */
/*                               BRAND SHOWCASE                               */
/* -------------------------------------------------------------------------- */
.brand-showcase {
    padding: var(--section-padding);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.brand-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--border-light);
    transition: transform var(--transition-smooth);
}

.brand-item:hover {
    transform: translateY(-5px);
}

.brand-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.brand-category {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-to-cart-btn {
    background: var(--text-black);
    color: var(--pure-white);
    border: 2px solid var(--text-black);
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all var(--transition-smooth);
}

.add-to-cart-btn:hover {
    background: transparent;
    color: var(--text-black);
}

/* -------------------------------------------------------------------------- */
/*                                   ABOUT                                    */
/* -------------------------------------------------------------------------- */
.about {
    padding: var(--section-padding);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text .section-header {
    text-align: left;
    margin-bottom: 3rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    border: 1px solid var(--border-light);
}

/* -------------------------------------------------------------------------- */
/*                                  CONTACT                                   */
/* -------------------------------------------------------------------------- */
.contact {
    padding: var(--section-padding);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.contact-details p {
    color: var(--text-gray);
    margin: 0;
}

.contact-form h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-black);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* -------------------------------------------------------------------------- */
/*                                   FOOTER                                   */
/* -------------------------------------------------------------------------- */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.footer-section p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul a {
    color: var(--text-gray);
    transition: color var(--transition-smooth);
}

.footer-section ul a:hover {
    color: var(--gold-accent);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-list .contact-icon {
    margin-top: 0.25rem;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: color var(--transition-smooth);
}

.social-link:hover {
    color: var(--gold-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-gray);
    font-size: 0.9rem;
}

.subscribe-form {
    display: flex;
    margin-top: 1rem;
}

.subscribe-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid var(--border-light);
    border-radius: 4px 0 0 4px;
    background: transparent;
    color: var(--text-gray);
}

.subscribe-form button {
    padding: 0.8rem 1rem;
    border: 1px solid var(--gold-accent);
    background: var(--gold-accent);
    color: var(--text-black);
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: all var(--transition-smooth);
}

.subscribe-form button:hover {
    background: var(--gold-light);
}

.notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-black);
    color: var(--pure-white);
    padding: 1rem 2rem;
    border-radius: 4px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.notification.show {
    opacity: 1;
    visibility: visible;
}

/* -------------------------------------------------------------------------- */
/*                              WHATSAPP WIDGET                               */
/* -------------------------------------------------------------------------- */
.whatsapp-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-widget a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all var(--transition-smooth);
}

.whatsapp-widget a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* -------------------------------------------------------------------------- */
/*                              LOADING STATES                                */
/* -------------------------------------------------------------------------- */
.loading {
    text-align: center;
    padding: 3rem;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.no-products {
    text-align: center;
    padding: 3rem;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.error {
    text-align: center;
    padding: 3rem;
    color: #e74c3c;
    font-size: 1.1rem;
}

/* -------------------------------------------------------------------------- */
/*                              NOTIFICATIONS                                 */
/* -------------------------------------------------------------------------- */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--gold-accent);
    color: var(--text-black);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    z-index: 10000;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* -------------------------------------------------------------------------- */
/*                                RESPONSIVE                                  */
/* -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 2.8rem;
    }
    
    .hero .container,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .desktop-nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        margin-top: 100px; /* Increased margin for mobile to match main hero */
        min-height: calc(100vh - 100px); /* Adjust height for mobile */
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .hero-product-showcase {
        grid-template-columns: 1fr;
        height: 400px;
        gap: 1rem;
    }
    
    /* Mobile hideout decoration */
    .hero-decoration {
        top: 20%;
        right: 10%;
        opacity: 0.05;
    }
    
    .hideout-svg {
        width: 120px;
        height: 120px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-tabs {
        flex-direction: column;
        gap: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        margin-top: 90px; /* Slightly reduced for very small screens but still more than before */
        min-height: calc(100vh - 90px);
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 0.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Small mobile hideout decoration */
    .hero-decoration {
        top: 15%;
        right: 5%;
        opacity: 0.03;
    }
    
    .hideout-svg {
        width: 80px;
        height: 80px;
    }
}

/* ==========================================================================
   CART PAGE STYLES
   ========================================================================== */

.cart-header,
.checkout-header {
    background: transparent;
    color: var(--text-black);
    padding: 3rem 0;
    text-align: center;
}

.cart-header h1,
.checkout-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-black);
}

.cart-header p,
.checkout-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.cart-content {
    padding: 3rem 0;
}

.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.cart-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-light);
}

.cart-header-row h2 {
    color: var(--text-black);
    font-size: 1.8rem;
}

.clear-cart {
    background: #dc3545;
    color: var(--pure-white);
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background var(--transition-smooth);
}

.clear-cart:hover {
    background: #c82333;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--pure-white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    align-items: center;
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-title {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--text-black);
}

.cart-item-category {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-item-price {
    color: var(--gold-accent);
    font-weight: bold;
    font-size: 1.1rem;
}

.cart-item-total {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    background: var(--text-black);
    color: var(--pure-white);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background var(--transition-smooth);
}

.qty-btn:hover {
    background: #333;
}

.quantity-controls input {
    width: 60px;
    height: 35px;
    text-align: center;
    border: 2px solid var(--border-light);
    border-radius: 5px;
    font-size: 0.9rem;
}

.remove-item {
    background: #dc3545;
    color: var(--pure-white);
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background var(--transition-smooth);
}

.remove-item:hover {
    background: #c82333;
}

.empty-cart-message {
    text-align: center;
    padding: 3rem;
}

.empty-cart-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-cart-message h3 {
    color: var(--text-black);
    margin-bottom: 1rem;
}

.empty-cart-message p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.cart-summary {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    color: var(--text-black);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-light);
}

.summary-item.total {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--text-black);
    border-bottom: 2px solid var(--gold-accent);
}

.delivery-info,
.payment-methods {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.delivery-info h4,
.payment-methods h4 {
    color: var(--text-black);
    margin-bottom: 1rem;
}

.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.delivery-icon {
    font-size: 1.5rem;
}

.delivery-text strong {
    display: block;
    color: var(--text-black);
    margin-bottom: 0.25rem;
}

.delivery-text span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.payment-icon {
    font-size: 1.2rem;
}

.checkout-btn {
    width: 100%;
    background: var(--gold-accent);
    color: var(--text-black);
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 2rem;
    transition: background var(--transition-smooth);
}

.checkout-btn:hover:not(:disabled) {
    background: var(--gold-light);
}

.checkout-btn:disabled {
    background: #ccc;
    color: var(--text-gray);
    cursor: not-allowed;
}

.continue-shopping {
    text-align: center;
    margin-top: 1rem;
}

.recently-viewed {
    padding: 3rem 0;
    background: #f9f9f9;
}

.recently-viewed h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-black);
    font-size: 2rem;
}

/* ==========================================================================
   CHECKOUT PAGE STYLES
   ========================================================================== */

.checkout-header {
    padding-top: 120px;
}

.checkout-content {
    padding: 3rem 0;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.checkout-form-section {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-light);
}

.form-header h2 {
    color: var(--text-black);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-gray);
    margin-bottom: 0;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section .section-header {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-section .section-header h3 {
    color: var(--text-black);
    font-size: 1.3rem;
    margin-bottom: 0;
}

.checkout-form .form-group {
    margin-bottom: 1.5rem;
}

.checkout-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-black);
    font-weight: 500;
}

.checkout-form .form-group input,
.checkout-form .form-group select,
.checkout-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color var(--transition-smooth);
}

.checkout-form .form-group input:focus,
.checkout-form .form-group select:focus,
.checkout-form .form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
}

.delivery-options,
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.delivery-option,
.payment-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color var(--transition-smooth);
}

.delivery-option:hover,
.payment-option:hover {
    border-color: var(--gold-accent);
}

.delivery-option input[type="radio"],
.payment-option input[type="radio"] {
    width: auto;
    margin: 0;
}

.delivery-option label,
.payment-option label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    margin: 0;
}

.delivery-info {
    flex: 1;
}

.delivery-title {
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 0.25rem;
}

.delivery-details {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.delivery-price {
    font-weight: 600;
    color: var(--gold-accent);
}

.payment-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.order-summary {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}

.summary-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-light);
}

.summary-header h3 {
    color: var(--text-black);
    font-size: 1.5rem;
    margin-bottom: 0;
}

.order-items {
    margin-bottom: 2rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-info {
    flex: 1;
}

.order-item-name {
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 0.25rem;
}

.order-item-price {
    color: var(--gold-accent);
    font-weight: 600;
}

.order-item-quantity {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.order-totals {
    margin-bottom: 2rem;
}

.total-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-light);
}

.total-item.total {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--text-black);
    border-bottom: 2px solid var(--gold-accent);
}

.order-actions {
    margin-bottom: 2rem;
}

.place-order-btn {
    width: 100%;
    background: var(--gold-accent);
    color: var(--text-black);
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: background var(--transition-smooth);
}

.place-order-btn:hover {
    background: var(--gold-light);
}

.order-security {
    text-align: center;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.security-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.security-icon {
    font-size: 1.2rem;
}

/* ==========================================================================
   ORDER SUCCESS PAGE STYLES
   ========================================================================== */

.success-header {
    background: linear-gradient(135deg, var(--text-black) 0%, #1a1a1a 100%);
    color: var(--pure-white);
    padding: 3rem 0;
    text-align: center;
}

.success-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold-accent);
}

.success-header p {
    font-size: 1.2rem;
    color: var(--pure-white);
}

.order-details {
    padding: 3rem 0;
}

.order-details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.order-info {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-light);
}

.info-header h2 {
    color: var(--text-black);
    font-size: 1.8rem;
    margin-bottom: 0;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--text-black);
}

.info-value {
    color: var(--text-gray);
}

.status-confirmed {
    color: #28a745;
    font-weight: 600;
}

.order-items-summary {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.summary-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-light);
}

.summary-header h3 {
    color: var(--text-black);
    font-size: 1.5rem;
    margin-bottom: 0;
}

.items-list {
    margin-bottom: 2rem;
}

.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.item:last-child {
    border-bottom: none;
}

.item-info {
    flex: 1;
}

.item-name {
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 0.25rem;
}

.item-price {
    color: var(--gold-accent);
    font-weight: 600;
}

.item-quantity {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.next-steps {
    padding: 3rem 0;
    background: #f9f9f9;
}

.steps-content {
    text-align: center;
}

.steps-content h2 {
    color: var(--text-black);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.step h3 {
    color: var(--text-black);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-gray);
    margin-bottom: 0;
}

.contact-support {
    padding: 3rem 0;
}

.support-content {
    text-align: center;
}

.support-content h2 {
    color: var(--text-black);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.support-content p {
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.support-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.support-icon {
    font-size: 2rem;
}

.support-info h4 {
    color: var(--text-black);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.support-info p {
    color: var(--text-gray);
    margin-bottom: 0;
}

.continue-shopping {
    padding: 3rem 0;
    background: var(--text-black);
    color: var(--pure-white);
}

.shopping-content {
    text-align: center;
}

.shopping-content h2 {
    color: var(--pure-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.shopping-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.shopping-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.shopping-actions .btn {
    border-color: var(--pure-white);
    color: var(--pure-white);
}

.shopping-actions .btn:hover {
    background: var(--pure-white);
    color: var(--text-black);
}

/* ==========================================================================
   RESPONSIVE DESIGN FOR CART & CHECKOUT
   ========================================================================== */

@media (max-width: 768px) {
    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .cart-item img {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .cart-header h1,
    .checkout-header h1 {
        font-size: 2rem;
    }
    
    .cart-summary,
    .order-summary {
        position: static;
    }
    
    .order-details-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .shopping-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================================================
   PRODUCT PAGE STYLES
   ========================================================================== */

.product-details {
    padding: 8rem 0 4rem;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-images {
    position: sticky;
    top: 120px;
}

.main-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-smooth);
}

.main-image:hover img {
    transform: scale(1.05);
}

.product-info-details {
    padding: 2rem 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.breadcrumb a {
    color: var(--text-gray);
    transition: color var(--transition-smooth);
}

.breadcrumb a:hover {
    color: var(--gold-accent);
}

.breadcrumb .separator {
    color: var(--border-light);
}

.breadcrumb .current {
    color: var(--text-black);
    font-weight: 500;
}

.product-header {
    margin-bottom: 2rem;
}

.product-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--text-black);
    line-height: 1.2;
}

.product-brand {
    font-size: 1.1rem;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.product-price {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold-accent);
    margin-bottom: 2rem;
}

.product-description {
    margin-bottom: 3rem;
}

.product-description h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-black);
}

.product-description p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quantity-selector {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quantity-selector label {
    font-weight: 500;
    color: var(--text-black);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-controls .qty-btn {
    background: var(--text-black);
    color: var(--pure-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background var(--transition-smooth);
}

.quantity-controls .qty-btn:hover {
    background: var(--gold-accent);
    color: var(--text-black);
}

.quantity-controls input {
    width: 80px;
    height: 40px;
    text-align: center;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
}

.quantity-controls input:focus {
    outline: none;
    border-color: var(--gold-accent);
}

.add-to-cart-btn {
    background: var(--text-black);
    color: var(--pure-white);
    border: 2px solid var(--text-black);
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all var(--transition-smooth);
}

.add-to-cart-btn:hover {
    background: transparent;
    color: var(--text-black);
}

.related-products {
    padding: 4rem 0;
    background: #f9f9f9;
}

.related-products .section-header {
    margin-bottom: 3rem;
}

.related-products .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* ==========================================================================
   RESPONSIVE DESIGN FOR PRODUCT PAGE
   ========================================================================== */

@media (max-width: 1024px) {
    .product-layout {
        gap: 3rem;
    }
    
    .product-title {
        font-size: 2.5rem;
    }
    
    .product-price {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-images {
        position: static;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-price {
        font-size: 1.8rem;
    }
    
    .product-actions {
        gap: 1.5rem;
    }
    
    .add-to-cart-btn {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .product-details {
        padding: 6rem 0 2rem;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
    
    .quantity-controls {
        gap: 0.5rem;
    }
    
    .quantity-controls .qty-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .quantity-controls input {
        width: 60px;
        height: 35px;
    }
}

/* ==========================================================================
   SHOP PAGE STYLES
   ========================================================================== */

.shop-hero {
    background: var(--background);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 120px; /* Increased margin to match main hero section */
}

.shop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23D4AF37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0;
}

.shop-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--text-black);
    position: relative;
    z-index: 2;
}

.shop-hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.shop-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.shop-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-smooth);
}

.shop-stat:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.2);
}

.shop-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 0.5rem;
}

.shop-stat .stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.shop-filters {
    background: var(--pure-white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-light);
    z-index: 100;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.filters-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid var(--border-light);
    border-radius: 25px;
    font-size: 1rem;
    background: var(--pure-white);
    color: var(--text-black);
    transition: all var(--transition-smooth);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-box input:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    font-size: 1.2rem;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid var(--border-light);
    border-radius: 25px;
    background: var(--pure-white);
    color: var(--text-gray);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold-accent);
    color: var(--text-black);
    border-color: var(--gold-accent);
    transform: translateY(-2px);
}

.sort-select select {
    padding: 12px 20px;
    border: 2px solid var(--border-light);
    border-radius: 25px;
    background: var(--pure-white);
    color: var(--text-black);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.sort-select select:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.products-section {
    padding: 4rem 0;
}

.shop-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.load-more-container {
    text-align: center;
}

.load-more-btn {
    padding: 15px 30px;
    background: var(--gold-accent);
    color: var(--text-black);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.loading-spinner {
    text-align: center;
    padding: 3rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-light);
    border-top: 4px solid var(--gold-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-message {
    text-align: center;
    padding: 3rem;
    color: var(--text-gray);
}

.retry-btn {
    margin-top: 1rem;
    padding: 10px 20px;
    background: var(--gold-accent);
    color: var(--text-black);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background var(--transition-smooth);
}

.retry-btn:hover {
    background: var(--gold-light);
}

.no-products {
    text-align: center;
    padding: 3rem;
    color: var(--text-gray);
}

.reset-btn {
    margin-top: 1rem;
    padding: 10px 20px;
    background: var(--gold-accent);
    color: var(--text-black);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background var(--transition-smooth);
}

.reset-btn:hover {
    background: var(--gold-light);
}

/* ==========================================================================
   RESPONSIVE DESIGN FOR SHOP PAGE
   ========================================================================== */

@media (max-width: 768px) {
    .filters-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .shop-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .shop-page-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .shop-hero {
        margin-top: 100px; /* Increased margin for mobile to match main hero */
        padding: 2rem 0;
    }
    
    .shop-hero h1 {
        font-size: 2.5rem;
    }
}

/* Shop Page Specific Product Card Styles */
.shop-page-grid .product-image {
    position: relative;
}

.shop-page-grid .product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform var(--transition-smooth);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.shop-page-grid .product-card:hover .product-overlay {
    transform: translateY(0);
    opacity: 1;
}

.shop-page-grid .product-info {
    text-align: center;
}

.shop-add-to-cart-btn {
    padding: 1rem 2rem;
    background: var(--pure-white);
    color: var(--text-black);
    border: 1px solid var(--text-black);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.shop-add-to-cart-btn:hover {
    background: var(--text-black);
    color: var(--pure-white);
} 