/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f5f5f5;
    --accent-color: #333;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

/* Notifications */
.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    max-width: 400px;
    padding: 20px 50px 20px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.notification-success {
    background: #4caf50;
    color: white;
}

.notification-error {
    background: #f44336;
    color: white;
}

.notification-close {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.notification-close:hover {
    opacity: 1;
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 20px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover {
    color: var(--text-light);
}

/* Animated underline for menu items without submenu */
.nav-menu > li:not(.has-submenu) > a {
    position: relative;
    padding-bottom: 5px;
}

.nav-menu > li:not(.has-submenu) > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s ease;
}

.nav-menu > li:not(.has-submenu) > a:hover::after {
    width: 100%;
}

/* Desktop Mega Menu - Only for large screens */
@media (min-width: 993px) {
    /* Dropdown indicator */
    .nav-menu > li.has-submenu > a::after {
        content: '▼';
        font-size: 10px;
        margin-left: 5px;
        transition: transform 0.3s ease;
    }

    .nav-menu > li.has-submenu:hover > a::after {
        transform: rotate(180deg);
    }

    /* Mega Menu */
    .submenu {
        position: absolute;
        top: calc(100% + 15px);
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        background: var(--white);
        min-width: 480px;
        max-width: 600px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        border-radius: 16px;
        padding: 24px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        list-style: none;
        border: 1px solid rgba(0,0,0,0.08);
        backdrop-filter: blur(10px);
    }

    /* Mega menu arrow */
    .submenu::before {
        content: '';
        position: absolute;
        top: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 8px solid var(--white);
        filter: drop-shadow(0 -2px 3px rgba(0,0,0,0.05));
    }

    .nav-menu > li.has-submenu:hover .submenu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    /* Grid layout for submenu items */
    .submenu {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 10px;
    }

    .submenu li {
        padding: 0;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }

    .nav-menu > li.has-submenu:hover .submenu li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger animation for submenu items */
    .nav-menu > li.has-submenu:hover .submenu li:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu > li.has-submenu:hover .submenu li:nth-child(2) { transition-delay: 0.1s; }
    .nav-menu > li.has-submenu:hover .submenu li:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu > li.has-submenu:hover .submenu li:nth-child(4) { transition-delay: 0.2s; }
    .nav-menu > li.has-submenu:hover .submenu li:nth-child(5) { transition-delay: 0.25s; }
    .nav-menu > li.has-submenu:hover .submenu li:nth-child(6) { transition-delay: 0.3s; }

    .submenu a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        font-size: 14px;
        font-weight: 500;
        text-transform: none;
        letter-spacing: 0;
        color: var(--text-color);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 10px;
        background: transparent;
        position: relative;
        overflow: hidden;
        border: 2px solid transparent;
    }

    .submenu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #1a1a1a, #000000);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

    .submenu a:hover {
        color: var(--white);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        border-color: #000000;
    }

    .submenu a:hover::before {
        opacity: 1;
    }

    .submenu a .menu-icon {
        font-size: 20px;
        min-width: 24px;
        text-align: center;
        filter: grayscale(0.3);
        transition: all 0.3s ease;
    }

    .submenu a:hover .menu-icon {
        filter: grayscale(0);
        transform: scale(1.1);
    }

    /* Separated items effect */
    .submenu li:not(:last-child) {
        position: relative;
    }
}

.nav-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-icon {
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.nav-icon:hover {
    opacity: 0.6;
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.user-menu-toggle:hover {
    background: var(--secondary-color);
}

.user-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text-color);
    font-size: 14px;
    border-radius: 8px;
    transition: var(--transition);
}

.user-dropdown a:hover {
    background: var(--secondary-color);
}

.btn-register {
    padding: 10px 24px;
    background: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-register:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 73, 94, 0.2);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section / Slider */
.hero {
    height: 85vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 1200px;
    width: 90%;
    padding: 0 40px;
    text-align: center;
}

.hero-title {
    font-size: 72px;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
    word-wrap: break-word;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    line-height: 1.6;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: white;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover,
.btn-secondary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Featured Section */
.featured-section {
    padding: 100px 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.featured-item {
    cursor: pointer;
    transition: var(--transition);
}

.featured-item:hover {
    transform: translateY(-10px);
}

.featured-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--secondary-color);
    margin-bottom: 20px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.featured-item:hover .featured-image img {
    transform: scale(1.05);
}

.featured-info h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

.link-arrow {
    font-size: 14px;
    color: var(--text-light);
}

.link-arrow:hover {
    color: var(--primary-color);
}

/* Collection Section */
.collection-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 300;
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

.collection-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 700px;
    position: relative;
}

.collection-image {
    position: relative;
    height: 700px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.collection-image:hover {
    transform: scale(1.02);
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.collection-image:hover img {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(52, 73, 94, 0.3) 0%,
        rgba(231, 76, 60, 0.2) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.collection-image:hover .collection-overlay {
    opacity: 1;
}

.collection-content {
    padding: 40px 20px;
    position: relative;
}

.collection-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(52, 73, 94, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(52, 73, 94, 0);
    }
}

.collection-content h2,
.collection-content h3 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.collection-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 32px;
    max-width: 550px;
}

.collection-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Info Section */
.info-section {
    padding: 100px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.info-content h2 {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.info-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.info-image {
    aspect-ratio: 1;
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    padding: 20px;
}

.info-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
}

.info-image:hover img {
    transform: scale(1.03);
}

/* Projects Section */
.projects-section {
    padding: 100px 0;
    background: var(--secondary-color);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-all {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.project-card {
    background: var(--white);
    transition: var(--transition);
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
    aspect-ratio: 16/10;
    background: var(--secondary-color);
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 30px;
}

.project-category {
    font-size: 12px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.project-title {
    font-size: 20px;
    font-weight: 500;
    margin: 15px 0;
    line-height: 1.4;
}

.project-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.no-projects {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.newsletter-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid var(--border-color);
    font-size: 14px;
    font-family: inherit;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Instagram Section */
.instagram-section {
    padding: 100px 0;
    background: var(--secondary-color);
    text-align: center;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin: 60px 0 40px;
}

.instagram-item {
    aspect-ratio: 1;
    background: var(--white);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.instagram-item:hover {
    transform: scale(1.05);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Instagram Placeholder */
.instagram-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    cursor: default;
}

.instagram-placeholder svg {
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.instagram-placeholder-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.instagram-placeholder:hover {
    transform: none;
}

.instagram-placeholder:hover svg {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.instagram-cta {
    text-align: center;
    margin-top: 30px;
}

.instagram-cta .btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer-column p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-categories {
    margin: 25px 0;
}

.footer-categories h5 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-categories ul {
    list-style: none;
}

.footer-categories ul li {
    margin-bottom: 12px;
}

.footer-categories ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-categories ul li a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-links a svg {
    flex-shrink: 0;
    fill: rgba(255, 255, 255, 0.8);
    transition: fill 0.3s ease;
}

.social-links a span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.social-links a:hover svg,
.social-links a:hover span {
    fill: white;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.footer-bottom .powered-by {
    font-size: 12px;
    margin-top: 8px;
}

.footer-bottom .powered-by a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-bottom .powered-by a:hover {
    color: rgba(255, 255, 255, 1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 38px;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 992px) {
    /* Hide desktop menu, show mobile toggle */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 0 20px 0;
        box-shadow: -5px 0 25px rgba(0,0,0,0.2);
        z-index: 1000;
        overflow-y: auto;
        transition: right 0.3s ease-in-out;
        gap: 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    /* Reset desktop submenu styles for mobile */
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu > li > a {
        display: block;
        padding: 18px 25px;
        font-size: 15px;
        font-weight: 600;
        color: #222 !important;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }
    
    .nav-menu > li > a:hover {
        background: #f5f5f5;
        color: var(--primary-color) !important;
    }
    
    /* Submenu arrow for mobile */
    .nav-menu > li.has-submenu > a {
        position: relative;
        padding-right: 50px;
    }
    
    .nav-menu > li.has-submenu > a::after {
        content: '+';
        position: absolute;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        font-weight: 400;
        transition: transform 0.3s ease;
    }
    
    .nav-menu > li.has-submenu.open > a::after {
        content: '−';
    }
    
    /* Mobile submenu */
    .nav-menu .submenu {
        position: static !important;
        width: 100% !important;
        max-height: 0 !important;
        overflow: hidden !important;
        background: #f0f0f0 !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        transition: max-height 0.4s ease !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: block !important;
        border: none !important;
        border-left: none !important;
        left: auto !important;
        top: auto !important;
        min-width: auto !important;
    }
    
    .nav-menu .submenu::before {
        display: none !important;
    }
    
    .nav-menu > li.has-submenu.open .submenu {
        max-height: 1000px !important;
        padding: 10px 0 !important;
        border-top: 2px solid #ccc !important;
        border-bottom: 2px solid #ccc !important;
        background: #e0e0e0 !important;
    }
    
    .nav-menu .submenu li {
        width: 100% !important;
        display: block !important;
        border-bottom: 1px solid #ccc !important;
        padding: 0 !important;
        margin: 0 !important;
        background: #e0e0e0 !important;
    }
    
    .nav-menu .submenu li:last-child {
        border-bottom: none !important;
    }
    
    .nav-menu .submenu a,
    .nav-menu .submenu li a {
        display: block !important;
        width: 100% !important;
        padding: 18px 25px 18px 45px !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        color: #111 !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
        background: #e0e0e0 !important;
        border: none !important;
        border-radius: 0 !important;
        transition: all 0.2s ease !important;
        text-decoration: none !important;
        box-shadow: none !important;
        transform: none !important;
        position: relative !important;
        gap: 0 !important;
        line-height: 1.4 !important;
    }
    
    .nav-menu .submenu a::before,
    .nav-menu .submenu li a::before {
        display: none !important;
    }
    
    .nav-menu .submenu a:hover,
    .nav-menu .submenu li a:hover {
        background: #bbb !important;
        color: #000 !important;
        padding-left: 50px !important;
        transform: none !important;
    }
    
    .nav-menu .submenu a .menu-icon {
        display: inline-block;
        margin-right: 8px;
        font-size: 16px;
    }
    
    /* Nav actions in mobile */
    .nav-actions {
        display: flex;
        gap: 15px;
        padding: 20px 25px;
        margin-top: auto;
        border-top: 1px solid #eee;
        justify-content: center;
    }
    
    .nav-actions .nav-icon {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f5f5f5;
        border-radius: 10px;
        font-size: 20px;
        color: #444;
        transition: all 0.2s ease;
    }
    
    .nav-actions .nav-icon:hover {
        background: var(--primary-color);
        color: white;
    }
    
    .nav-actions .user-name {
        display: none;
    }
    
    .nav-actions .user-menu-toggle {
        width: 45px;
        height: 45px;
        padding: 0;
        background: #f5f5f5;
        border-radius: 10px;
        justify-content: center;
    }
    
    .nav-actions .user-menu-toggle:hover {
        background: var(--primary-color);
        color: white;
    }
    
    .nav-actions .btn-register {
        width: 45px;
        height: 45px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0;
        background: transparent;
        border-radius: 10px;
        color: var(--primary-color);
        border: 1.5px solid var(--primary-color);
        overflow: hidden;
        position: relative;
    }

    .nav-actions .btn-register::after {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2334495e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='9' cy='7' r='4'%3E%3C/circle%3E%3Cline x1='19' y1='8' x2='19' y2='14'%3E%3C/line%3E%3Cline x1='22' y1='11' x2='16' y2='11'%3E%3C/line%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .nav-actions .btn-register:hover {
        background: var(--primary-color);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(52, 73, 94, 0.2);
    }

    .nav-actions .btn-register:hover::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='9' cy='7' r='4'%3E%3C/circle%3E%3Cline x1='19' y1='8' x2='19' y2='14'%3E%3C/line%3E%3Cline x1='22' y1='11' x2='16' y2='11'%3E%3C/line%3E%3C/svg%3E");
    }
    
    .user-dropdown {
        right: auto;
        left: 0;
    }
    
    /* Mobile toggle button */
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        font-size: 24px;
        color: #222;
        background: white;
        border: 2px solid #ddd;
        border-radius: 8px;
        cursor: pointer;
        z-index: 1001;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        transition: all 0.2s ease;
    }
    
    .mobile-menu-toggle:hover {
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

    
    .featured-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .collection-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }
    
    .collection-image {
        height: 550px;
    }
    
    .collection-content {
        padding: 20px 0;
    }
    
    .collection-content h2,
    .collection-content h3 {
        font-size: 36px;
    }
    
    .collection-hero,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-content {
        max-width: 95%;
        padding: 0 20px;
    }
    
    .slide {
        background-size: contain;
        background-position: center;
        background-color: var(--secondary-color);
    }
    
    .slide-overlay {
        display: none;
    }
    
    .hero-title {
        font-size: 42px;
        letter-spacing: 4px;
        color: var(--primary-color);
        text-shadow: none;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 16px;
        color: var(--text-color);
        text-shadow: none;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 12px;
        border-color: var(--primary-color);
        background: var(--primary-color);
        color: white;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        background: rgba(0, 0, 0, 0.5);
        border: 2px solid rgba(255, 255, 255, 0.8);
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .featured-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        height: 45vh;
        min-height: 350px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .slide {
        background-size: contain;
        background-position: center;
        background-color: var(--secondary-color);
    }
    
    .slide-overlay {
        display: none;
    }
    
    .hero-title {
        font-size: 28px;
        letter-spacing: 2px;
        color: var(--primary-color);
        text-shadow: none;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 1px;
        color: var(--text-color);
        text-shadow: none;
        line-height: 1.5;
    }
    
    .btn-primary {
        padding: 10px 24px;
        font-size: 11px;
        letter-spacing: 1px;
        border-color: var(--primary-color);
        background: var(--primary-color);
        color: white;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.6);
        border: 2px solid rgba(255, 255, 255, 0.9);
    }
    
    .slider-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .slider-prev {
        left: 5px;
    }
    
    .slider-next {
        right: 5px;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
        border: 1px solid rgba(0, 0, 0, 0.4);
        background: rgba(255, 255, 255, 0.3);
    }
    
    .dot.active,
    .dot:hover {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .collection-section {
        padding: 60px 0;
    }
    
    .collection-image {
        height: 500px;
    }
    
    .collection-content h2,
    .collection-content h3 {
        font-size: 28px;
    }
    
    .collection-content p {
        font-size: 16px;
    }
    
    .collection-actions {
        flex-direction: column;
    }
    
    .collection-badge {
        font-size: 11px;
        padding: 6px 16px;
    }
    
    .featured-section,
    .collection-section,
    .info-section,
    .stories-section,
    .newsletter-section,
    .instagram-section {
        padding: 60px 0;
    }
}

/* Products Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c3e50 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    margin-top: 80px;
}

.page-title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.products-section {
    padding: 80px 0;
}

.products-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--secondary-color);
    border-radius: 8px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-input {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    min-width: 250px;
}

.search-btn {
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #2c3e50;
}

.filter-select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    min-width: 150px;
}

.filter-results {
    margin-left: auto;
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.7;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: var(--secondary-color);
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.no-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    z-index: 2;
}

.product-badge.out-of-stock {
    background: #e74c3c;
}

.favorite-btn {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    background: #fff5f5;
    border-color: #ff6b6b;
    color: #ff6b6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

.favorite-btn.active {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.favorite-btn.active:hover {
    background: linear-gradient(135deg, #ff5252 0%, #e04e64 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.4);
}

.product-info {
    padding: 20px;
}

.product-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.product-name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 50px;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 12px;
    color: #666;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-price {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

.no-products {
    text-align: center;
    padding: 80px 0;
}

.no-products h3 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.no-products p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination-btn {
    padding: 10px 20px;
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: var(--primary-color);
    color: white;
}

.pagination-numbers {
    display: flex;
    gap: 5px;
}

.pagination-number {
    padding: 10px 15px;
    background: white;
    color: var(--text-color);
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination-number:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination-number.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-dots {
    padding: 10px 5px;
    color: #999;
}

/* Responsive Products */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
    
    .products-filters {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-input {
        min-width: 100%;
    }
    
    .filter-select {
        min-width: 100%;
    }
    
    .filter-results {
        margin-left: 0;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .product-name {
        font-size: 16px;
        min-height: 44px;
    }
    
    .product-price {
        font-size: 20px;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        max-width: 400px;
        margin: 0 auto;
    }
}


/* Product Detail Page Styles */
.breadcrumb {
    background: var(--secondary-color);
    padding: 15px 0;
    margin-top: 80px;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span:last-child {
    color: #666;
}

.product-detail {
    padding: 60px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.product-gallery {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    user-select: none;
    touch-action: pan-y pinch-zoom;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gallery-nav:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav:hover svg {
    stroke: white;
}

.gallery-nav svg {
    stroke: var(--primary-color);
    transition: stroke 0.3s ease;
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-counter {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.no-image-large {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
}

.thumbnail {
    aspect-ratio: 1;
    background: var(--secondary-color);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info {
    padding: 20px 0;
}

.product-category-link {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    text-decoration: none;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.product-category-link:hover {
    color: var(--primary-color);
}

.product-detail-title {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.product-detail-price {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-stock {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
}

.product-stock.in-stock {
    background: #d4edda;
    color: #155724;
}

.product-stock.out-of-stock {
    background: #f8d7da;
    color: #721c24;
}

.product-detail-specs {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 30px 0;
    margin-bottom: 30px;
}

.spec-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-item strong {
    font-weight: 600;
    color: var(--text-color);
}

.spec-item span {
    color: #666;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-add-cart {
    flex: 1;
    padding: 15px 30px;
    font-size: 16px;
    background: var(--primary-color) !important;
    color: white !important;
    border: 2px solid var(--primary-color) !important;
}

.btn-add-cart:hover {
    background: #2c3e50 !important;
    border-color: #2c3e50 !important;
    color: white !important;
}

.btn-secondary {
    padding: 15px 30px;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-wishlist {
    flex: 0;
    white-space: nowrap;
}

.product-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
}

.product-share strong {
    font-weight: 600;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--secondary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-btn svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn:hover svg {
    transform: scale(1.1);
}

.share-btn-facebook:hover {
    background: #1877f2;
    color: white;
}

.share-btn-twitter:hover {
    background: #1da1f2;
    color: white;
}

.share-btn-pinterest:hover {
    background: #e60023;
    color: white;
}

.product-description {
    margin-bottom: 80px;
}

.product-description .section-title {
    margin-bottom: 30px;
}

.description-content {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.description-content h1,
.description-content h2,
.description-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.description-content p {
    margin-bottom: 15px;
}

.description-content ul,
.description-content ol {
    margin-bottom: 15px;
    padding-left: 30px;
}

.related-products {
    padding-top: 80px;
    border-top: 1px solid #e0e0e0;
}

.related-products .section-title {
    margin-bottom: 40px;
}

/* Responsive Product Detail */
@media (max-width: 1024px) {
    .product-detail-grid {
        gap: 40px;
    }
    
    .product-detail-title {
        font-size: 36px;
    }
    
    .product-detail-price {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .breadcrumb {
        font-size: 12px;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-gallery {
        position: relative;
        top: auto;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .gallery-counter {
        font-size: 12px;
        padding: 5px 14px;
    }
    
    .product-detail-title {
        font-size: 28px;
    }
    
    .product-detail-price {
        font-size: 28px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn-wishlist {
        flex: 1;
    }
    
    .product-share {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .breadcrumb .container {
        font-size: 11px;
        gap: 5px;
    }
    
    .gallery-nav {
        width: 35px;
        height: 35px;
    }
    
    .gallery-nav svg {
        width: 18px;
        height: 18px;
    }
    
    .gallery-prev {
        left: 8px;
    }
    
    .gallery-next {
        right: 8px;
    }
    
    .gallery-counter {
        font-size: 11px;
        padding: 4px 12px;
        bottom: 10px;
    }
    
    .product-detail-title {
        font-size: 24px;
    }
    
    .product-detail-price {
        font-size: 24px;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
        gap: 8px;
    }
}

/* About Page Styles */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    text-align: center;
}

.page-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.about-section {
    padding: 80px 0;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-story-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.about-story-image {
    position: relative;
    height: 500px;
    background: var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-light);
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-values {
    margin: 80px 0;
}

.about-values h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 80px 0;
}

.mission-card {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    border-radius: 8px;
    padding: 50px 40px;
}

.mission-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.mission-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.why-section {
    margin: 80px 0;
}

.why-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    -webkit-text-stroke: 1px var(--primary-color);
}

.why-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.why-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

.cta-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    margin: 80px 0 0;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Content area button fixes */
.cta-section .btn-primary,
.no-products .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.cta-section .btn-primary:hover,
.no-products .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:first-child {
    padding-top: 0;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-social {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-social h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-social .social-links {
    margin-top: 0;
}

.contact-social .social-links a {
    background: var(--white);
    border: 1px solid var(--border-color);
}

.contact-social .social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-social .social-links a svg {
    fill: var(--primary-color);
}

.contact-social .social-links a span {
    color: var(--text-color);
}

.contact-social .social-links a:hover svg {
    fill: var(--white);
}

.contact-social .social-links a:hover span {
    color: var(--white);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Captcha Styles */
.captcha-group {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 2px dashed var(--border-color);
}

.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.captcha-question {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    min-width: 180px;
    justify-content: center;
}

.captcha-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.captcha-operator {
    font-size: 24px;
    color: #666;
}

.captcha-equals {
    font-size: 24px;
    color: #666;
}

.captcha-hint {
    font-size: 28px;
    color: #999;
    font-weight: 700;
}

.captcha-wrapper input[type="number"] {
    max-width: 120px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 12px;
}

.form-help {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #666;
    font-style: italic;
}

.alert {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.map-section {
    margin-top: 80px;
    height: 450px;
    overflow: hidden;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-light);
}

/* Responsive Styles for About & Contact */
@media (max-width: 1024px) {
    .page-title {
        font-size: 42px;
    }
    
    .about-story {
        gap: 40px;
    }
    
    .about-story-content h2,
    .about-values h2,
    .why-section h2 {
        font-size: 36px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .about-story {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-story-image {
        height: 350px;
    }
    
    .about-story-content h2,
    .about-values h2,
    .why-section h2,
    .cta-section h2,
    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 28px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .captcha-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .captcha-wrapper input[type="number"] {
        max-width: 100%;
    }
    
    .map-section {
        height: 350px;
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
    
    .about-story-content h2,
    .about-values h2,
    .why-section h2,
    .cta-section h2,
    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 24px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .mission-card {
        padding: 30px 25px;
    }
    
    .mission-card h3 {
        font-size: 24px;
    }
    
    .why-number {
        font-size: 36px;
    }
    
    .why-content h3 {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-outline {
        width: 100%;
    }
    
    .contact-item {
        padding: 20px 0;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .map-section {
        height: 300px;
    }
}

/* ===========================
   COLLECTIONS PAGE
   =========================== */

.collections-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.collection-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.collection-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-card:hover .collection-image img {
    transform: scale(1.1);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.featured-badge svg {
    width: 14px;
    height: 14px;
}

.collection-content {
    padding: 30px;
}

.collection-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.collection-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.collection-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.product-count {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.product-count svg {
    width: 16px;
    height: 16px;
    stroke: var(--secondary-color);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 100px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.empty-state svg {
    margin-bottom: 30px;
    stroke: var(--border-color);
}

.empty-state h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.empty-state p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* CTA Section on Collections Page */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c2c2c 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
    .collections-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .collection-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .collections-section {
        padding: 60px 0;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .collection-image {
        height: 280px;
    }
    
    .collection-content {
        padding: 25px;
    }
    
    .collection-content h3 {
        font-size: 22px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .featured-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .collection-content {
        padding: 20px;
    }
    
    .collection-content h3 {
        font-size: 20px;
    }
    
    .empty-state {
        padding: 60px 20px;
    }
    
    .empty-state h2 {
        font-size: 24px;
    }
}

