/* Andes Accessories - Main Stylesheet */

/* CSS Custom Properties (Design Tokens) */
:root {
    /* Colors */
    --pink-soft: #FF9ECF;
    --pink-hot: #FF69B4;
    --black: #1F1F1F;
    --white: #FFFFFF;
    --gold: #FFD700;
    
    /* Spacing Scale */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-6: 24px;
    --space-8: 32px;
    --space-12: 48px;
    --space-16: 64px;
    
    /* Border Radius */
    --radius-small: 8px;
    --radius-large: 14px;
    
    /* Shadows */
    --shadow-card: 0 6px 18px rgba(31, 31, 31, 0.08);
    --shadow-hover: 0 8px 25px rgba(31, 31, 31, 0.12);
    
    /* Transitions */
    --transition: all 180ms cubic-bezier(0.22, 0.9, 0.35, 1);
    
    /* Typography */
    --font-header: 'Pacifico', cursive;
    --font-body: 'Poppins', sans-serif;
    
    /* Layout */
    --container-max-width: 1200px;
    --grid-gutter: 24px;
    --container-padding: 24px;
    --container-padding-mobile: 16px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-4);
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

p {
    margin-bottom: var(--space-4);
}

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

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border: none;
    border-radius: var(--radius-large);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--pink-hot);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-secondary:hover {
    background-color: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-icon {
    width: 16px;
    height: 16px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 158, 207, 0.12);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 158, 207, 0.2);
    transition: var(--transition);
}

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

.logo img {
    height: 80px;
    width: auto;
}

.logo-secondary {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-8);
}

.nav-link {
    font-weight: 600;
    color: var(--black);
    position: relative;
}

.nav-link:hover {
    color: var(--pink-hot);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--pink-hot);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.search-btn,
.account-btn,
.cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--radius-small);
    transition: var(--transition);
    position: relative;
}

.search-btn:hover,
.account-btn:hover,
.cart-btn:hover {
    background-color: rgba(255, 105, 180, 0.1);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--pink-hot);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--black);
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1001;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: var(--space-16) var(--space-6);
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-link {
    display: block;
    padding: var(--space-4) 0;
    font-weight: 600;
    color: var(--black);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 158, 207, 0.18), rgba(255, 255, 255, 0.02));
    z-index: -1;
}

.hero-content {
    max-width: 600px;
    color: var(--black);
}

.hero-title {
    font-size: 48px;
    margin-bottom: var(--space-4);
    color: var(--black);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: var(--space-8);
    color: var(--black);
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Collections Section */
.collections {
    padding: var(--space-16) 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-title {
    font-size: 32px;
    color: var(--black);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
    padding: 0 var(--space-4);
}

.collection-card {
    background-color: var(--white);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.collection-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

.collection-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.collection-content {
    padding: var(--space-4);
}

.collection-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-1);
    color: var(--black);
}

.collection-tagline {
    font-size: 13px;
    color: var(--black);
    opacity: 0.7;
    margin: 0;
}

/* Products Grid */
.featured-products {
    padding: var(--space-16) 0;
    background-color: #fafafa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-12);
    padding: 0 var(--space-4);
}

.product-card {
    background-color: var(--white);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.product-image-container {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    opacity: 0;
    transition: var(--transition);
}

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

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

.overlay-btn {
    background-color: var(--white);
    color: var(--black);
    border: none;
    border-radius: var(--radius-small);
    padding: var(--space-2);
    cursor: pointer;
    transition: var(--transition);
}

.overlay-btn:hover {
    background-color: var(--pink-hot);
    color: var(--white);
}

.product-badge {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    background-color: var(--pink-hot);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-small);
}

.product-content {
    padding: var(--space-4);
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--black);
}

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

.product-price.sale {
    color: var(--pink-hot);
}

.product-price.original {
    text-decoration: line-through;
    opacity: 0.6;
    margin-right: var(--space-2);
}

/* Load More */
.load-more-container {
    text-align: center;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Footer */
.footer {
    background-color: var(--pink-soft);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.footer-logo img {
    height: 50px;
    margin-bottom: var(--space-4);
}

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

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

.footer-links li {
    margin-bottom: var(--space-2);
}

.footer-links a {
    color: var(--black);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--pink-hot);
}

.newsletter-form {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-3);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-small);
    font-family: var(--font-body);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--pink-hot);
}

.social-links {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--pink-hot);
    color: var(--white);
}

.footer-contact {
    color: var(--black);
    opacity: 0.8;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: var(--space-4);
}

.copyright {
    text-align: center;
    color: var(--black);
    opacity: 0.6;
    margin: 0;
}

/* Cart Panel */
.cart-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1002;
    display: flex;
    flex-direction: column;
}

.cart-panel.active {
    right: 0;
}

.cart-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-6);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-panel-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.cart-panel-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--radius-small);
    transition: var(--transition);
}

.cart-panel-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.cart-panel-content {
    flex: 1;
    padding: var(--space-6);
    overflow-y: auto;
}

.cart-empty {
    text-align: center;
    padding: var(--space-8);
    color: var(--black);
    opacity: 0.6;
}

.cart-item {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-4) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-small);
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.cart-item-price {
    font-size: 14px;
    color: var(--pink-hot);
    margin-bottom: var(--space-2);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.quantity-btn {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.quantity-input {
    width: 40px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    padding: 2px;
    font-size: 14px;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--pink-hot);
    cursor: pointer;
    font-size: 12px;
    margin-left: auto;
}

.cart-panel-footer {
    padding: var(--space-6);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-4);
    font-size: 18px;
    font-weight: 600;
}

.cart-checkout-btn {
    width: 100%;
    justify-content: center;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 100px;
    right: var(--space-4);
    z-index: 1003;
}

.toast {
    background-color: var(--white);
    border: 1px solid var(--pink-hot);
    border-radius: var(--radius-large);
    padding: var(--space-4);
    margin-bottom: var(--space-2);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    min-width: 300px;
    animation: slideIn 0.3s ease-out;
}

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

.toast-icon {
    color: var(--pink-hot);
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1004;
}

.search-modal.active {
    display: flex;
}

.search-modal-content {
    background-color: var(--white);
    border-radius: var(--radius-large);
    padding: var(--space-6);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.search-input-container {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.search-input {
    flex: 1;
    padding: var(--space-4);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-large);
    font-size: 16px;
    font-family: var(--font-body);
}

.search-input:focus {
    outline: none;
    border-color: var(--pink-hot);
}

.search-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--radius-small);
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --container-padding: var(--container-padding-mobile);
    }
    
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 26px;
    }
    
    body {
        font-size: 14px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-primary {
        display: none;
    }
    
    .logo-secondary {
        display: block;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        padding: 0 var(--space-3);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cart-panel {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 22px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        height: 60px;
    }
    
    .logo img {
        height: 30px;
    }
    
    .hero {
        height: 70vh;
    }
}

/* Focus States for Accessibility */
button:focus,
input:focus,
a:focus {
    outline: 3px solid rgba(255, 105, 180, 0.35);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --shadow-card: 0 6px 18px rgba(0, 0, 0, 0.3);
        --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.4);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Lookbook Styles */
.lookbook-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--pink-soft), var(--white));
    text-align: center;
}

.lookbook-title {
    font-size: 48px;
    margin-bottom: var(--space-4);
    color: var(--black);
}

.lookbook-subtitle {
    font-size: 18px;
    color: var(--black);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.lookbook-grid {
    padding: var(--space-16) 0;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
    padding: 0 var(--space-4);
}

.lookbook-item {
    position: relative;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.lookbook-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.lookbook-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.lookbook-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.lookbook-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: flex-end;
    padding: var(--space-6);
    opacity: 0;
    transition: var(--transition);
}

.lookbook-item:hover .lookbook-overlay {
    opacity: 1;
}

.lookbook-content {
    color: var(--white);
}

.lookbook-item-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.lookbook-item-description {
    font-size: 14px;
    margin-bottom: var(--space-3);
    opacity: 0.9;
}

.lookbook-products {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.product-tag {
    background-color: var(--pink-hot);
    color: var(--white);
    font-size: 12px;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-small);
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--pink-soft), var(--white));
    text-align: center;
}

.about-title {
    font-size: 48px;
    color: var(--black);
    margin: 0;
}

.about-content {
    padding: var(--space-16) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-12);
    align-items: start;
    padding: 0 var(--space-4);
}

.about-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: var(--space-8);
    color: var(--black);
}

.about-story,
.about-mission {
    margin-bottom: var(--space-8);
}

.about-story h2,
.about-mission h2 {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--black);
}

.about-story p,
.about-mission p {
    margin-bottom: var(--space-4);
    line-height: 1.7;
}

.founder-photo {
    width: 100%;
    height: auto;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
}

.values-section {
    padding: var(--space-16) 0;
    background-color: #fafafa;
}

.values-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: var(--space-12);
    color: var(--black);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    padding: 0 var(--space-4);
}

.value-card {
    background-color: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    color: var(--pink-hot);
    margin-bottom: var(--space-4);
}

.value-card h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--black);
}

.value-card p {
    color: var(--black);
    opacity: 0.8;
    line-height: 1.6;
}

.contact-section {
    padding: var(--space-16) 0;
}

.contact-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: var(--space-12);
    color: var(--black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    padding: 0 var(--space-4);
}

.contact-info h3 {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--black);
}

.contact-info p {
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.contact-item strong {
    color: var(--black);
    font-weight: 600;
}

.contact-item a {
    color: var(--pink-hot);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background-color: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
}

.form-group {
    margin-bottom: var(--space-4);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-3);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-small);
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition);
}

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

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

/* Active Navigation State */
.nav-link.active {
    color: var(--pink-hot);
}

.nav-link.active::after {
    width: 100%;
}

.mobile-nav-link.active {
    color: var(--pink-hot);
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cart-panel,
    .search-modal,
    .toast-container {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

/* Product Detail Page Styles */
.breadcrumb {
    padding: 100px 0 var(--space-4);
    background-color: #fafafa;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 14px;
    color: var(--black);
    opacity: 0.7;
}

.breadcrumb-nav a {
    color: var(--pink-hot);
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.breadcrumb-nav span {
    color: var(--black);
    opacity: 0.5;
}

.product-detail {
    padding: var(--space-8) 0 var(--space-16);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

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

.main-image {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-large);
    overflow: hidden;
    margin-bottom: var(--space-4);
    box-shadow: var(--shadow-card);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zoom-btn {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.zoom-btn:hover {
    background-color: var(--white);
    transform: scale(1.1);
}

.thumbnail-images {
    display: flex;
    gap: var(--space-3);
}

.thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: var(--radius-small);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    background: none;
    padding: 0;
}

.thumbnail.active {
    border-color: var(--pink-hot);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding-left: var(--space-4);
}

.product-badges {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.badge {
    font-size: 12px;
    font-weight: 600;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-small);
    text-transform: uppercase;
}

.badge.new {
    background-color: var(--pink-hot);
    color: var(--white);
}

.badge.bestseller {
    background-color: var(--gold);
    color: var(--black);
}

.badge.sale {
    background-color: var(--pink-hot);
    color: var(--white);
}

.product-title {
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--black);
}

.product-price {
    margin-bottom: var(--space-4);
}

.current-price {
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
}

.product-sku {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
    font-size: 14px;
    color: var(--black);
    opacity: 0.7;
}

.sku-label {
    font-weight: 600;
}

.product-description {
    margin-bottom: var(--space-8);
    line-height: 1.7;
}

.product-variants {
    margin-bottom: var(--space-6);
}

.variant-group {
    margin-bottom: var(--space-4);
}

.variant-label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--black);
}

.variant-options {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.variant-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-small);
    background: none;
    cursor: pointer;
    transition: var(--transition);
    min-width: 80px;
}

.variant-option.active {
    border-color: var(--pink-hot);
    background-color: rgba(255, 105, 180, 0.1);
}

.variant-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.variant-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.2);
}

.variant-color.gold {
    background-color: #FFD700;
}

.variant-color.silver {
    background-color: #C0C0C0;
}

.variant-color.rose-gold {
    background-color: #E8B4B8;
}

.variant-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--black);
}

.variant-status {
    font-size: 10px;
    color: var(--pink-hot);
}

.product-quantity {
    margin-bottom: var(--space-6);
}

.quantity-label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--black);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.quantity-controls .quantity-btn {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background: none;
    border-radius: var(--radius-small);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition);
}

.quantity-controls .quantity-btn:hover {
    border-color: var(--pink-hot);
    background-color: rgba(255, 105, 180, 0.1);
}

.quantity-controls .quantity-input {
    width: 80px;
    height: 40px;
    text-align: center;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-small);
    font-size: 16px;
    font-weight: 600;
}

.product-actions {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.product-actions .btn {
    flex: 1;
    justify-content: center;
}

.product-tabs {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: var(--space-6);
}

.tab-headers {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.tab-header {
    background: none;
    border: none;
    padding: var(--space-3) var(--space-4);
    font-weight: 600;
    color: var(--black);
    opacity: 0.7;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.tab-header.active {
    color: var(--pink-hot);
    opacity: 1;
    border-bottom-color: var(--pink-hot);
}

.tab-panel {
    display: none;
    line-height: 1.7;
}

.tab-panel.active {
    display: block;
}

.tab-panel h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--black);
}

.related-products {
    padding: var(--space-16) 0;
    background-color: #fafafa;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .lookbook-title,
    .about-title {
        font-size: 36px;
    }
    
    .masonry-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        padding: 0 var(--space-3);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        padding: 0 var(--space-3);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        padding: 0 var(--space-3);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        padding: 0 var(--space-3);
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .product-images {
        position: static;
    }
    
    .product-info {
        padding-left: 0;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .tab-headers {
        flex-direction: column;
        gap: var(--space-2);
    }
}

@media (max-width: 480px) {
    .lookbook-title,
    .about-title {
        font-size: 28px;
    }
    
    .lookbook-hero,
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-content,
    .values-section,
    .contact-section {
        padding: var(--space-12) 0;
    }
}
