* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #f1efe7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    color: #e8e4dc;
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    border-bottom: 2px solid rgba(232, 228, 220, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(0, 0, 0, 1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: #e8e4dc;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #e8e4dc, transparent);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.logo:hover {
    color: #fff;
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #e8e4dc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
    display: block;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e8e4dc, transparent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(232, 228, 220, 0.1);
}

.nav-links a:hover::before {
    width: 80%;
}

.hero {
    background: linear-gradient(135deg, #e8e4dc 0%, #d4cfc4 50%, #e8e4dc 100%);
    color: #000;
    padding: 150px 20px 100px;
    text-align: center;
    margin-top: 60px;
    border-bottom: 3px solid #000;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,0,0,0.02)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    animation: hero-fade-in 1s ease;
}

@keyframes hero-fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: #000;
    color: #e8e4dc;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 auto 2rem auto;
    border: 2px solid #000;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
    animation: badge-slide-in 0.8s ease 0.3s both;
}

@keyframes badge-slide-in {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 0 auto 2rem auto;
    display: block;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15));
    animation: logo-float 3s ease-in-out infinite;
}

@keyframes logo-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: #000;
    text-shadow: 2px 2px 0 rgba(255,255,255,0.5);
    animation: title-slide-in 0.8s ease 0.5s both;
}

@keyframes title-slide-in {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 500;
    animation: subtitle-slide-in 0.8s ease 0.7s both;
}

@keyframes subtitle-slide-in {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: cta-fade-in 0.8s ease 0.9s both;
}

@keyframes cta-fade-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: #000;
    color: #e8e4dc;
    border: 3px solid #000;
}

.btn-primary:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: #000;
    border: 3px solid #000;
}

.btn-secondary:hover {
    background: #000;
    color: #e8e4dc;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s;
}

.hero-btn:hover .btn-icon {
    transform: translateX(5px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
    background: rgba(255,255,255,0.5);
    border: 2px solid #000;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    animation: stats-fade-in 0.8s ease 1.1s both;
}

@keyframes stats-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: #000;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
    animation: scroll-fade-in 0.8s ease 1.5s both;
}

@keyframes scroll-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero {
        min-height: 600px;
        padding: 120px 20px 80px;
    }
    
    .hero-logo {
        max-width: 90%;
    }
    
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .stat-divider {
        width: 50px;
        height: 2px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

.btn {
    display: inline-block;
    background: #000;
    color: #e8e4dc;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
    border: 2px solid #000;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 2px;
}

.btn:hover {
    background: transparent;
    color: #000;
}

.perfumes {
    padding: 100px 20px;
    background: linear-gradient(180deg, #fff 0%, #f9f9f9 50%, #fff 100%);
    position: relative;
}

.perfumes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(162, 155, 254, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(108, 92, 231, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-header-main {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge-main {
    display: inline-block;
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
    color: #fff;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 2px solid #6c5ce7;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.section-header-main h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000;
    letter-spacing: 4px;
    font-weight: 900;
}

.section-subtitle-main {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

.perfumes h2, .reviews h2, .contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000;
    letter-spacing: 4px;
    font-weight: 900;
}

.filter-container {
    display: flex;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    flex-wrap: wrap;
    background: #fff;
    padding: 25px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.search-container {
    flex: 2;
    min-width: 300px;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    pointer-events: none;
    z-index: 1;
}

.category-container,
.sort-container {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-bar {
    width: 100%;
    padding: 15px 20px 15px 50px;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #f9f9f9;
    transition: all 0.3s;
}

.search-bar:focus {
    outline: none;
    border-color: #000;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.search-bar::placeholder {
    color: #999;
}

.category-filter,
.sort-filter {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #f9f9f9;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.category-filter:focus,
.sort-filter:focus {
    outline: none;
    border-color: #000;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.pagination-btn {
    background: #000;
    color: #e8e4dc;
    padding: 12px 24px;
    border: 2px solid #000;
    border-radius: 0;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.pagination-btn:hover:not(:disabled) {
    background: transparent;
    color: #000;
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 #000;
}

.pagination-btn:disabled {
    background: #ccc;
    border-color: #ccc;
    color: #888;
    cursor: not-allowed;
}

.page-info {
    font-size: 1rem;
    color: #000;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    overflow: auto;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #fff;
    margin: 3% auto;
    padding: 0;
    border: 3px solid #000;
    border-radius: 20px;
    width: 95%;
    max-width: 1100px;
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    overflow: hidden;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-80px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 40px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
}

.close-modal:hover {
    color: #fff;
    background: #000;
    transform: rotate(90deg) scale(1.1);
}

.modal-body {
    display: flex;
    gap: 3rem;
    padding: 60px;
}

.modal-image-container {
    flex: 1;
    min-width: 400px;
}

.modal-image {
    width: 100%;
    height: 500px;
    background: #e8e4dc;
    border: 3px solid #000;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.modal-image:hover {
    transform: scale(1.02);
}

.modal-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 20px;
}

.modal-info h2 {
    font-size: 2.5rem;
    color: #000;
    letter-spacing: 2px;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.modal-brand {
    font-size: 1.4rem;
    color: #666;
    font-weight: 500;
}

.modal-category {
    font-size: 1.2rem;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-gender,
.modal-size {
    font-size: 1.1rem;
    color: #555;
}

.modal-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    letter-spacing: 1px;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .modal-body {
        flex-direction: column;
        padding: 20px;
    }
    
    .modal-image-container {
        min-width: 100%;
    }
    
    .modal-image {
        height: 300px;
    }
}

.perfume-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 280px);
    gap: 2rem;
    justify-content: center;
}

.perfume-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    border: 2px solid #000;
    transition: all 0.3s;
    width: 280px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.perfume-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.8) 0%, 
        rgba(78, 205, 196, 0.8) 25%, 
        rgba(162, 155, 254, 0.8) 50%, 
        rgba(255, 215, 0, 0.8) 75%, 
        rgba(255, 107, 107, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.perfume-card:hover::before {
    opacity: 1;
}

.perfume-card > * {
    position: relative;
    z-index: 1;
}

.perfume-card:hover {
    box-shadow: 8px 8px 0 #000;
    transform: translate(-4px, -4px);
    border-color: #000;
}

.perfume-image {
    height: 250px;
    background: #e8e4dc;
    border: 2px solid #000;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

.perfume-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
}

.perfume-card:hover .perfume-image::before {
    transform: scale(1.2);
}

.perfume-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #000;
    letter-spacing: 2px;
    font-weight: 900;
}

.brand {
    color: #666;
    font-weight: 500;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.category {
    color: #000;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.gender {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.description {
    color: #666;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 900;
    color: #000;
    letter-spacing: 1px;
}

.reviews {
    padding: 100px 20px;
    background: linear-gradient(180deg, #e8e4dc 0%, #d4cfc4 50%, #e8e4dc 100%);
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(0,0,0,0.02) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(0,0,0,0.02) 0%, transparent 50%);
    pointer-events: none;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    border: 3px solid #000;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 4rem;
    color: rgba(0,0,0,0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.reviewer {
    font-weight: 900;
    color: #000;
    letter-spacing: 1px;
}

.contact {
    padding: 100px 20px;
    background: linear-gradient(135deg, #e8e4dc 0%, #f5f1e8 50%, #e8e4dc 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(0,0,0,0.02) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(0,0,0,0.02) 0%, transparent 50%);
    pointer-events: none;
}

.contact > * {
    position: relative;
    z-index: 1;
}

.contact-form {
    max-width: 650px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    border: 3px solid #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-form input,
.contact-form textarea {
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1.05rem;
    background: #f9f9f9;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #000;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn {
    margin-top: 10px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.contact-info {
    text-align: center;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.6);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(0,0,0,0.1);
}

.contact-info p {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    color: #333;
}

footer {
    background: #000;
    color: #e8e4dc;
    text-align: center;
    padding: 2rem 0;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .hero-logo {
        max-width: 90%;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
}

.resellers {
    padding: 100px 20px;
    background: linear-gradient(135deg, #c9c3b8 0%, #d4cfc4 50%, #c9c3b8 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.resellers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0,0,0,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0,0,0,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.resellers h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #000;
    letter-spacing: 4px;
    font-weight: 900;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 0 rgba(255,255,255,0.3);
}

.resellers h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #000, transparent);
    margin: 25px auto 0;
}

.reseller-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.3rem;
    color: #333;
    line-height: 1.9;
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.5);
    padding: 30px 40px;
    border-radius: 15px;
    border: 2px solid rgba(0,0,0,0.1);
    font-weight: 500;
}

.resellers .btn {
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.resellers .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Reseller Packages */
.reseller-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    position: relative;
    z-index: 1;
}

.package-card {
    background: #fff;
    border: 3px solid #000;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.featured-package {
    border-color: #000;
    background: linear-gradient(135deg, #fff 0%, #f9f8f6 100%);
    transform: scale(1.05);
}

.featured-package:hover {
    transform: translateY(-10px) scale(1.05);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.package-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #000;
    letter-spacing: 2px;
    font-weight: 800;
    text-transform: uppercase;
}

.package-bottles {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    background: #f5f5f5;
    border-radius: 8px;
}

.package-description {
    font-size: 1rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: left;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
    text-align: left;
}

.package-features li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

.package-price {
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    margin: 1.5rem 0 1rem;
    letter-spacing: 1px;
}

.package-btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1rem;
    margin-top: 1rem;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.package-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 2rem;
    font-style: italic;
}

.reseller-contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.7);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    border: 2px solid rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 2rem;
}

.contact-item strong {
    display: block;
    font-size: 1rem;
    color: #000;
    margin-bottom: 0.3rem;
}

.contact-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
}

.contact-item a {
    color: #333;
    text-decoration: none;
}

.contact-item a:hover {
    color: #000;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .reseller-packages {
        grid-template-columns: 1fr;
    }
    
    .featured-package {
        transform: scale(1);
    }
    
    .featured-package:hover {
        transform: translateY(-10px) scale(1);
    }
    
    .reseller-contact-info {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Wishlist Button */
.wishlist-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #000;
    color: #e8e4dc;
    border: 2px solid #000;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.wishlist-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

#wishlistCount {
    background: #e8e4dc;
    color: #000;
    padding: 2px 8px;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: bold;
    margin-left: 5px;
}

/* Wishlist Panel */
.wishlist-panel {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100%;
    background: #fff;
    border-left: 3px solid #000;
    z-index: 1500;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0,0,0,0.3);
}

.wishlist-panel.active {
    right: 0;
}

.wishlist-header {
    background: #000;
    color: #e8e4dc;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.wishlist-header h3 {
    margin: 0;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.close-wishlist {
    font-size: 30px;
    cursor: pointer;
    transition: transform 0.3s;
}

.close-wishlist:hover {
    transform: rotate(90deg);
}

.wishlist-items {
    padding: 20px;
}

.empty-wishlist {
    text-align: center;
    color: #999;
    padding: 40px 20px;
    font-style: italic;
}

.wishlist-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border: 2px solid #000;
    margin-bottom: 15px;
    background: #f9f9f9;
    transition: all 0.3s;
}

.wishlist-item:hover {
    transform: translateX(-5px);
    box-shadow: 5px 5px 0 #000;
}

.wishlist-item-image {
    width: 80px;
    height: 80px;
    background: #e8e4dc;
    border: 2px solid #000;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.wishlist-item-info {
    flex: 1;
}

.wishlist-item-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #000;
}

.wishlist-item-info p {
    margin: 3px 0;
    font-size: 0.9rem;
    color: #666;
}

.wishlist-item-price {
    font-weight: bold;
    color: #000;
    font-size: 1.1rem;
}

.remove-wishlist {
    background: transparent;
    border: none;
    color: #ff0000;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s;
}

.remove-wishlist:hover {
    transform: scale(1.3);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 120px;
    background: #000;
    color: #e8e4dc;
    border: 2px solid #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-actions .btn {
    flex: 1;
    text-align: center;
}

.add-to-wishlist {
    background: #000;
    color: #e8e4dc;
}

.add-to-wishlist.in-wishlist {
    background: #ff0000;
    border-color: #ff0000;
}

.share-btn {
    background: transparent;
    color: #000;
}

/* Sort Container */
.sort-container {
    flex: 1;
    min-width: 200px;
}

.sort-filter {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    border: 2px solid #000;
    border-radius: 0;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    letter-spacing: 1px;
}

.sort-filter:focus {
    outline: none;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
    transform: translate(-2px, -2px);
}

/* Results Info */
.results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 15px 20px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
}

#resultsCount {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

.clear-btn {
    background: #ff6b6b;
    border: 2px solid #ff6b6b;
    color: #fff;
    padding: 8px 20px;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-weight: 600;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.clear-btn:hover {
    background: #ff5252;
    border-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wishlist-panel {
        width: 100%;
        right: -100%;
    }
    
    .wishlist-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .scroll-top-btn {
        bottom: 80px;
        right: 20px;
    }
    
    .filter-container {
        flex-direction: column;
    }
    
    .results-info {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid #e8e4dc;
    color: #e8e4dc;
    font-size: 1.5rem;
    padding: 5px 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-menu-toggle:hover {
    background: #e8e4dc;
    color: #000;
}

/* View Toggle */
.view-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
    background: #fff;
    border: 2px solid #000;
    padding: 4px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.view-btn {
    background: transparent;
    border: none;
    color: #000;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.view-icon {
    font-size: 1.2rem;
}

.view-btn.active,
.view-btn:hover {
    background: #000;
    color: #e8e4dc;
}

/* List View */
.perfume-grid.list-view {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.perfume-grid.list-view .perfume-card {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding: 25px;
}

.perfume-grid.list-view .perfume-image {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.perfume-grid.list-view .perfume-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.perfume-grid.list-view .perfume-card h3 {
    font-size: 2rem;
}

.perfume-grid.list-view .price {
    font-size: 1.8rem;
}

/* Review Stats */
.review-stats {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.rating-summary {
    display: inline-block;
    padding: 40px 60px;
    background: #fff;
    border: 3px solid #000;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.rating-summary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.average-rating {
    font-size: 5rem;
    font-weight: 900;
    color: #000;
    line-height: 1;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-summary .stars {
    font-size: 2.5rem;
    color: #ffd700;
    margin: 15px 0;
    letter-spacing: 5px;
}

.rating-summary p {
    color: #666;
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.review-date {
    color: #999;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

#writeReviewBtn {
    display: block;
    margin: 3rem auto 0;
}

/* Review Modal */
.review-modal-content {
    max-width: 600px;
    padding: 40px;
}

.review-modal-content h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    letter-spacing: 2px;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rating-input {
    text-align: center;
}

.rating-input label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.star {
    font-size: 3rem;
    cursor: pointer;
    color: #ddd;
    transition: all 0.2s;
}

.star:hover,
.star.active {
    color: #000;
    transform: scale(1.2);
}

.review-form input,
.review-form textarea {
    padding: 15px;
    border: 2px solid #000;
    border-radius: 0;
    font-size: 1rem;
    background: #fff;
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.1);
}

/* Footer Enhancements */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 3rem 0;
    border-bottom: 2px solid #333;
}

.footer-section h3,
.footer-section h4 {
    color: #e8e4dc;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-section p {
    color: #999;
    margin: 0.5rem 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #e8e4dc;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.2);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 2px solid #333;
    background: #1a1a1a;
    color: #e8e4dc;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #e8e4dc;
}

.newsletter-form .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
}

/* Loading Spinner */
.loading-spinner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    justify-content: center;
    align-items: center;
}

.loading-spinner.active {
    display: flex;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #333;
    border-top: 5px solid #e8e4dc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Quick View Button */
.quick-view-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #e8e4dc;
    border: 2px solid #000;
    padding: 10px 20px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.perfume-card {
    position: relative;
}

.perfume-card:hover .quick-view-btn {
    opacity: 1;
}

/* Comparison Feature */
.compare-checkbox {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    z-index: 10;
}

.compare-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: #000;
    color: #e8e4dc;
    padding: 20px;
    z-index: 1500;
    transition: bottom 0.3s;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

.compare-bar.active {
    bottom: 0;
}

.compare-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.compare-items {
    display: flex;
    gap: 1rem;
}

.compare-item {
    background: #333;
    padding: 10px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.remove-compare {
    background: transparent;
    border: none;
    color: #ff0000;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        max-height: 500px;
        border-top: 2px solid #333;
        overflow-y: auto;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid #333;
    }
    
    .perfume-grid.list-view .perfume-card {
        flex-direction: column;
    }
    
    .perfume-grid.list-view .perfume-image {
        width: 100%;
        height: 250px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .view-toggle {
        flex-wrap: wrap;
    }
}

/* Hero Features Section */
.hero-features-section {
    padding: 60px 20px;
    background: #fff;
    border-bottom: 2px solid #e0e0e0;
    position: relative;
}

.hero-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #000, transparent);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.03), transparent);
    transition: left 0.5s;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: #000;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
    border: 3px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    position: relative;
}

.feature-item:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    transition: all 0.3s;
}

.feature-item:hover .feature-icon {
    filter: invert(1) brightness(2);
    transform: scale(1.1);
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    font-weight: 900;
    color: #000;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Featured/Trending Section */
.featured-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 50%, #f9f9f9 100%);
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0,0,0,0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0,0,0,0.02) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: #fff;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 2px solid #ff5252;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
    }
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000;
    letter-spacing: 4px;
    font-weight: 900;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.05);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

.featured-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 40px 40px;
    scrollbar-width: none;
    position: relative;
    z-index: 1;
    justify-content: center;
}

.featured-carousel::-webkit-scrollbar {
    display: none;
}

.featured-carousel .perfume-card {
    min-width: 280px;
    flex-shrink: 0;
    background: #fff;
    border: 3px solid #000;
    transition: all 0.3s;
    position: relative;
}

.featured-carousel .perfume-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #ffd700);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.featured-carousel .perfume-card:hover::before {
    opacity: 1;
}

.featured-carousel .perfume-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.carousel-btn {
    background: #000;
    color: #e8e4dc;
    border: 3px solid #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.carousel-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.carousel-btn:hover::before {
    width: 100%;
    height: 100%;
}

.carousel-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn span {
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-item {
        padding: 20px 15px;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-item h4 {
        font-size: 1.1rem;
    }
    
    .feature-item p {
        font-size: 0.85rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Price Filter Section */
.price-filter-section {
    padding: 40px 20px;
    background: #e8e4dc;
    text-align: center;
}

.price-filter-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    font-weight: 900;
}

.price-range-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.price-range-btn {
    background: transparent;
    border: 2px solid #000;
    color: #000;
    padding: 15px 30px;
    font-size: 1rem;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-weight: 600;
}

.price-range-btn:hover,
.price-range-btn.active {
    background: #000;
    color: #e8e4dc;
    transform: translateY(-3px);
    box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}

/* Voice Search Button */
.search-container {
    position: relative;
}

.voice-search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s;
    display: none;
}

.voice-search-btn:hover {
    transform: translateY(-50%) scale(1.2);
}

.voice-search-btn.listening {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Chat Bot */
.chat-bot-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #000;
    color: #e8e4dc;
    border: 2px solid #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.chat-bot-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.chat-widget {
    position: fixed;
    bottom: 170px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: #fff;
    border: 3px solid #000;
    z-index: 1000;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.chat-widget.active {
    display: flex;
}

.chat-header {
    background: #000;
    color: #e8e4dc;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.close-chat {
    background: transparent;
    border: none;
    color: #e8e4dc;
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.close-chat:hover {
    transform: rotate(90deg);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f9f9f9;
}

.bot-message,
.user-message {
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 10px;
    max-width: 80%;
    animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-message {
    background: #e8e4dc;
    border: 2px solid #000;
    margin-right: auto;
}

.user-message {
    background: #000;
    color: #e8e4dc;
    margin-left: auto;
}

.quick-replies {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.quick-reply {
    background: #fff;
    border: 2px solid #000;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-align: left;
}

.quick-reply:hover {
    background: #000;
    color: #e8e4dc;
}

.chat-input-container {
    display: flex;
    padding: 15px;
    border-top: 2px solid #000;
    background: #fff;
}

#chatInput {
    flex: 1;
    padding: 10px;
    border: 2px solid #000;
    font-size: 0.9rem;
}

#chatInput:focus {
    outline: none;
}

#sendChatBtn {
    background: #000;
    color: #e8e4dc;
    border: 2px solid #000;
    padding: 10px 20px;
    margin-left: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

#sendChatBtn:hover {
    background: #333;
}

/* Quick Actions Menu */
.quick-actions-menu {
    position: fixed;
    bottom: 180px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.quick-actions-menu.active {
    opacity: 1;
    visibility: visible;
}

.quick-action-btn {
    background: #000;
    color: #e8e4dc;
    border: 2px solid #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.quick-action-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

/* Promo Banner */
.promo-banner {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #e8e4dc;
    padding: 15px 20px;
    z-index: 999;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.promo-banner.active {
    transform: translateY(0);
}

.promo-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo-content span {
    font-size: 1rem;
    letter-spacing: 1px;
}

.close-promo {
    background: transparent;
    border: none;
    color: #e8e4dc;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.close-promo:hover {
    transform: rotate(90deg);
}

/* Badge for new/sale items */
.perfume-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff0000;
    color: #fff;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.perfume-badge.new {
    background: #00a86b;
}

.perfume-badge.sale {
    background: #ff0000;
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Responsive Updates */
@media (max-width: 768px) {
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .chat-widget {
        width: calc(100% - 40px);
        right: 20px;
        bottom: 90px;
    }
    
    .chat-bot-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .quick-actions-menu {
        bottom: 90px;
        right: 20px;
    }
    
    .price-range-buttons {
        flex-direction: column;
    }
    
    .price-range-btn {
        width: 100%;
    }
    
    .promo-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Dark Mode Toggle (Optional) */
.dark-mode-toggle {
    position: fixed;
    top: 100px;
    right: 30px;
    background: #000;
    color: #e8e4dc;
    border: 2px solid #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s;
}

.dark-mode-toggle:hover {
    transform: rotate(180deg);
}

/* Print Styles */
@media print {
    .navbar,
    .wishlist-btn,
    .scroll-top-btn,
    .chat-bot-btn,
    .quick-actions-menu,
    .promo-banner,
    footer {
        display: none;
    }
}

/* Enhanced Review Cards with Photos */
.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #000;
    object-fit: cover;
}

.review-images {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.review-photo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 2px solid #000;
    cursor: pointer;
    transition: transform 0.3s;
}

.review-photo:hover {
    transform: scale(1.05);
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: #e8e4dc;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000;
    letter-spacing: 4px;
    font-weight: 900;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #fff;
    border: 2px solid #000;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 20px 25px;
    color: #666;
    line-height: 1.6;
}

/* Instagram Section */
.instagram-section {
    padding: 80px 20px;
    background: #d4cfc4;
}

.instagram-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
    letter-spacing: 4px;
    font-weight: 900;
}

.instagram-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border: 2px solid #000;
    cursor: pointer;
    transition: transform 0.3s;
}

.instagram-post:hover {
    transform: scale(1.05);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    transition: opacity 0.3s;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-btn {
    display: block;
    margin: 0 auto;
    max-width: 300px;
}

/* Scent Quiz Section - ENHANCED & FEATURED */
.scent-quiz-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 5px solid #e8e4dc;
    border-bottom: 5px solid #e8e4dc;
}

.scent-quiz-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(232, 228, 220, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(232, 228, 220, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.quiz-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    padding: 8px 20px;
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 2px;
    border: 2px solid #000;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
    animation: pulse-badge 2s infinite;
    z-index: 10;
    display: none;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.quiz-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
}

.quiz-decoration-left {
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, #e8e4dc 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.quiz-decoration-right {
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, #e8e4dc 0%, transparent 70%);
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.quiz-intro {
    position: relative;
    z-index: 1;
}

.quiz-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.quiz-intro h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #e8e4dc;
    letter-spacing: 5px;
    font-weight: 900;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}

.quiz-tagline {
    font-size: 1.5rem;
    color: #e8e4dc;
    margin-bottom: 1.5rem;
    font-weight: 600;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.quiz-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e8e4dc;
    font-size: 1.1rem;
    font-weight: 600;
}

.benefit-icon {
    font-size: 1.8rem;
}

.quiz-cta-btn {
    background: linear-gradient(135deg, #e8e4dc 0%, #fff 100%);
    color: #000;
    border: 3px solid #e8e4dc;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(232, 228, 220, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.quiz-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.5s;
}

.quiz-cta-btn:hover::before {
    left: 100%;
}

.quiz-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(232, 228, 220, 0.5);
    background: linear-gradient(135deg, #fff 0%, #e8e4dc 100%);
}

.btn-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.quiz-cta-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.quiz-stats {
    margin-top: 2rem;
    color: #e8e4dc;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Responsive Quiz Section */
@media (max-width: 768px) {
    .scent-quiz-section {
        padding: 60px 20px;
    }
    
    .quiz-intro h2 {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }
    
    .quiz-tagline {
        font-size: 1.2rem;
    }
    
    .quiz-description {
        font-size: 1rem;
    }
    
    .quiz-benefits {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .quiz-cta-btn {
        padding: 18px 35px;
        font-size: 1.1rem;
    }
    
    .quiz-badge {
        top: 10px;
        right: 10px;
        font-size: 0.75rem;
        padding: 6px 15px;
    }
}

/* Quiz Modal */
.quiz-modal-content {
    max-width: 700px;
    padding: 40px;
}

.quiz-progress {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border: 2px solid #000;
    margin-bottom: 30px;
}

.quiz-progress-bar {
    height: 100%;
    background: #000;
    transition: width 0.3s ease;
    width: 0%;
}

.quiz-question {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #000;
    text-align: center;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.quiz-option {
    padding: 20px;
    background: #fff;
    border: 2px solid #000;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 600;
}

.quiz-option:hover {
    background: #f9f9f9;
    transform: translateY(-3px);
    box-shadow: 4px 4px 0 #000;
}

.quiz-option.selected {
    background: #000;
    color: #e8e4dc;
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.quiz-navigation .btn {
    flex: 1;
}

.quiz-results {
    text-align: center;
}

.quiz-results h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000;
}

#quizResultText {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.quiz-recommendations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.quiz-recommendation-card {
    background: #fff;
    border: 2px solid #000;
    padding: 20px;
    text-align: center;
}

.quiz-recommendation-card h3 {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #000;
}

.quiz-recommendation-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.quiz-recommendation-card .btn {
    width: 100%;
    padding: 10px;
    font-size: 0.9rem;
}

/* Scent Notes in Modal */
.scent-notes {
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
}

.scent-notes h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #000;
    text-align: center;
}

.scent-pyramid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.scent-layer {
    padding: 12px 15px;
    border: 2px solid #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.scent-layer:hover {
    transform: translateX(5px);
}

.scent-layer.top-notes {
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
}

.scent-layer.middle-notes {
    background: linear-gradient(135deg, #ffe6f0 0%, #fff 100%);
}

.scent-layer.base-notes {
    background: linear-gradient(135deg, #e6f0ff 0%, #fff 100%);
}

.layer-label {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
}

.layer-content {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

/* Similar Products in Modal */
.similar-products {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.similar-products h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #000;
    text-align: center;
}

.similar-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.similar-product-card {
    background: #fff;
    border: 2px solid #000;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.similar-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 4px 4px 0 #000;
}

.similar-product-image {
    width: 100%;
    height: 120px;
    background: #e8e4dc;
    border: 2px solid #000;
    margin-bottom: 10px;
    background-size: cover;
    background-position: center;
}

.similar-product-card h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #000;
}

.similar-product-card p {
    font-size: 0.85rem;
    color: #666;
}

/* Recently Viewed Section */
.recently-viewed-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 50%, #f5f5f5 100%);
    border-top: 3px solid #000;
    position: relative;
}

.recently-viewed-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0,0,0,0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0,0,0,0.02) 0%, transparent 50%);
    pointer-events: none;
}

.recently-viewed-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000;
    letter-spacing: 4px;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.recently-viewed-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #000, transparent);
    margin: 20px auto 0;
}

.recently-viewed-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.recently-viewed-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    position: relative;
    z-index: 1;
    padding: 20px 0;
}

.recently-viewed-grid::-webkit-scrollbar {
    display: none;
}

.recently-viewed-grid .perfume-card {
    min-width: 250px;
    flex-shrink: 0;
}

.recently-viewed-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    color: #e8e4dc;
    border: 3px solid #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.recently-viewed-nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.recently-viewed-nav.prev {
    left: 0;
}

.recently-viewed-nav.next {
    right: 0;
}

.recently-viewed-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.recently-viewed-nav:disabled:hover {
    transform: translateY(-50%) scale(1);
}

/* Responsive Updates */
@media (max-width: 768px) {
    .quiz-options {
        grid-template-columns: 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .scent-layer {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .similar-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .review-images {
        justify-content: center;
    }
}

/* Quiz Text Input */
.quiz-text-input {
    width: 100%;
    padding: 20px;
    font-size: 1.2rem;
    border: 2px solid #000;
    background: #fff;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s;
}

.quiz-text-input:focus {
    outline: none;
    box-shadow: 4px 4px 0 #000;
    transform: translate(-2px, -2px);
}

.quiz-text-input::placeholder {
    color: #999;
    font-weight: normal;
}

/* Floating Quiz Button */
.floating-quiz-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #e8e4dc;
    border: 3px solid #e8e4dc;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulse-float 3s infinite;
}

@keyframes pulse-float {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 12px 35px rgba(0,0,0,0.5);
    }
}

.floating-quiz-btn:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 40px rgba(232, 228, 220, 0.6);
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
}

.floating-quiz-icon {
    font-size: 1.5rem;
    animation: rotate-icon 4s linear infinite;
}

@keyframes rotate-icon {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.floating-quiz-text {
    letter-spacing: 1px;
}

/* Hide floating button on mobile to avoid clutter */
@media (max-width: 768px) {
    .floating-quiz-btn {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }
    
    .floating-quiz-btn:hover {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 10;
}

.product-badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid #000;
    box-shadow: 2px 2px 0 rgba(0,0,0,0.2);
    animation: badge-appear 0.3s ease;
}

@keyframes badge-appear {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-badge.bestseller {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: #fff;
}

.product-badge.new-arrival {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a3a0 100%);
    color: #fff;
}

.product-badge.limited {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
}

.product-badge.trending {
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
    color: #fff;
}

/* Card Actions */
.card-actions {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
}

.compare-btn {
    background: #fff;
    border: 2px solid #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.compare-btn:hover {
    background: #000;
    transform: scale(1.1);
}

.compare-btn:hover .compare-icon {
    filter: invert(1);
}

.compare-btn.active {
    background: #000;
    border-color: #4ecdc4;
    box-shadow: 0 0 10px #4ecdc4;
}

.compare-btn.active .compare-icon {
    filter: invert(1);
}

/* Enhanced Compare Bar */
.compare-bar {
    position: fixed;
    bottom: -150px;
    left: 0;
    width: 100%;
    background: #000;
    color: #e8e4dc;
    padding: 20px;
    z-index: 1500;
    transition: bottom 0.3s;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
    border-top: 3px solid #e8e4dc;
}

.compare-bar.active {
    bottom: 0;
}

.compare-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.compare-items {
    display: flex;
    gap: 1rem;
    flex: 1;
    overflow-x: auto;
}

.compare-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1a1a1a;
    padding: 10px 15px;
    border: 2px solid #e8e4dc;
    min-width: 200px;
}

.compare-item-image {
    width: 50px;
    height: 50px;
    background-size: cover;
    background-position: center;
    border: 2px solid #e8e4dc;
    flex-shrink: 0;
}

.compare-item-name {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 600;
}

.remove-compare {
    background: transparent;
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.remove-compare:hover {
    transform: scale(1.3);
    color: #ff5252;
}

.compare-bar-actions {
    display: flex;
    gap: 1rem;
}

.compare-now-btn {
    background: #e8e4dc;
    color: #000;
    border: 2px solid #e8e4dc;
    padding: 12px 25px;
    font-weight: 700;
}

.compare-now-btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

.clear-compare-btn {
    background: transparent;
    color: #e8e4dc;
    border: 2px solid #e8e4dc;
    padding: 12px 25px;
}

.clear-compare-btn:hover {
    background: #e8e4dc;
    color: #000;
}

/* Comparison Modal */
.comparison-modal-content {
    max-width: 1200px;
    padding: 40px;
    max-height: 90vh;
    overflow-y: auto;
}

.comparison-modal-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #000;
    letter-spacing: 3px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border: 3px solid #000;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    border: 2px solid #000;
    text-align: center;
}

.comparison-header th {
    background: #000;
    color: #e8e4dc;
    font-weight: 900;
}

.feature-column {
    background: #e8e4dc;
    font-weight: 700;
    text-align: left;
    min-width: 150px;
}

.product-column {
    min-width: 250px;
}

.comparison-product-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.comparison-product-image {
    width: 100px;
    height: 100px;
    background-size: cover;
    background-position: center;
    border: 2px solid #e8e4dc;
}

.comparison-product-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #e8e4dc;
}

.comparison-brand {
    margin: 0;
    font-size: 0.9rem;
    color: #ccc;
    font-weight: normal;
}

.feature-label {
    background: #f9f9f9;
    font-weight: 700;
    text-align: left;
}

.feature-value {
    background: #fff;
}

.comparison-product-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.comparison-action-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.comparison-action-item .btn {
    width: 100%;
}

.comparison-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.comparison-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .compare-bar-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .compare-items {
        width: 100%;
    }
    
    .compare-bar-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .compare-bar-actions .btn {
        width: 100%;
    }
    
    .comparison-modal-content {
        padding: 20px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .product-badges {
        top: 5px;
        left: 5px;
    }
    
    .product-badge {
        font-size: 0.65rem;
        padding: 4px 8px;
    }
}

/* Comparison Hint */
.comparison-hint {
    background: linear-gradient(135deg, #fff9e6 0%, #fffef0 100%);
    border: 3px solid #ffd700;
    padding: 20px 25px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    animation: hint-slide-in 0.5s ease, hint-pulse 3s infinite;
    position: relative;
    font-size: 1.05rem;
    font-weight: 600;
}

@keyframes hint-slide-in {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hint-pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 215, 0, 0.4);
    }
}

.comparison-hint.hidden {
    display: none;
}

.hint-icon {
    font-size: 1.8rem;
    animation: hint-bounce 2s infinite;
}

@keyframes hint-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.hint-text {
    flex: 1;
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

.hint-text strong {
    color: #000;
    font-size: 1.2rem;
}

.hint-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border-radius: 50%;
}

.hint-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
    transform: rotate(90deg);
}

/* Tooltip on compare button */
.compare-btn::after {
    content: 'Compare';
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #e8e4dc;
    padding: 5px 10px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    border: 2px solid #000;
    z-index: 100;
}

.compare-btn:hover::after {
    opacity: 1;
}

/* Highlight effect for first 3 compare buttons */
.compare-btn.highlight {
    animation: compare-highlight 2s infinite;
    border-color: #4ecdc4;
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.6);
}

@keyframes compare-highlight {
    0%, 100% {
        box-shadow: 0 0 15px rgba(78, 205, 196, 0.6);
    }
    50% {
        box-shadow: 0 0 25px rgba(78, 205, 196, 0.9);
    }
}

/* Responsive hint */
@media (max-width: 768px) {
    .comparison-hint {
        flex-direction: column;
        text-align: center;
        padding: 12px 15px;
    }
    
    .hint-text {
        font-size: 0.9rem;
    }
    
    .hint-text strong {
        font-size: 1rem;
    }
}


/* Social Media Section */
.social-media-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.social-media-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.social-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.social-header {
    text-align: center;
    margin-bottom: 4rem;
}

.social-header h2 {
    font-size: 3rem;
    color: #fff;
    letter-spacing: 4px;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.social-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
}

.social-links-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.social-link {
    background: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid transparent;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.social-link.facebook::before {
    background: linear-gradient(135deg, #1877f2 0%, #0c63d4 100%);
}

.social-link.instagram::before {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.tiktok::before {
    background: linear-gradient(135deg, #000000 0%, #ee1d52 50%, #69c9d0 100%);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border-color: #fff;
}

.social-link:hover .social-icon-wrapper,
.social-link:hover .social-info {
    color: #fff;
    position: relative;
    z-index: 1;
}

.social-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-link.facebook .social-icon-wrapper {
    background: linear-gradient(135deg, #1877f2 0%, #0c63d4 100%);
    color: #fff;
}

.social-link.instagram .social-icon-wrapper {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.social-link.tiktok .social-icon-wrapper {
    background: linear-gradient(135deg, #000000 0%, #ee1d52 50%, #69c9d0 100%);
    color: #fff;
}

.social-link:hover .social-icon-wrapper {
    background: rgba(255,255,255,0.2);
    transform: rotate(360deg) scale(1.1);
}

.social-icon {
    width: 35px;
    height: 35px;
}

.social-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-name {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
    letter-spacing: 1px;
}

.social-handle {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

.social-link:hover .social-name,
.social-link:hover .social-handle {
    color: #fff;
}

/* ===== SHOPPING CART STYLES ===== */

/* Cart Button */
.cart-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #000;
    color: #e8e4dc;
    border: 2px solid #000;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.cart-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

#cartCount {
    background: #e8e4dc;
  

/* Responsive Cart Styles */
@media (max-width: 768px) {
    .cart-panel {
        width: 100%;
        right: -100%;
        height: 100vh;
        overflow-y: auto;
    }
    
    .cart-panel.active {
        right: 0;
    }
    
    .cart-btn {
        bottom: 80px;
        right: 20px;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .checkout-modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .checkout-form {
        padding: 20px;
    }
}
;
    border-top: 2px solid #000;
    margin-top: 10px;
    padding-top: 15px;
}

.place-order-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    background: #000;
    color: #e8e4dc;
    border: 2px solid #000;
}

.place-order-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.add-to-cart-btn {
    background: #000;
    color: #e8e4dc;
}

.add-to-cart-btn:hover {
    background: #333;
}

/* Responsive Cart Styles */
@media (max-width: 768px) {
    /* Cart Panel - Full Screen on Mobile */
    .cart-panel {
        width: 100%;
        right: -100%;
    }
    
    .cart-panel.active {
        right: 0;
    }
    
    /* Cart Button - Better Mobile Position */
    .cart-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 1rem;
        z-index: 998;
    }
    
    /* Cart Items - Better Touch Targets */
    .cart-item {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .cart-item-image {
        width: 70px;
        height: 70px;
    }
    
    .cart-item-info h4 {
        font-size: 1rem;
    }
    
    .cart-item-info p {
        font-size: 0.85rem;
    }
    
    /* Quantity Controls - Larger Touch Targets */
    .qty-btn {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .cart-item-quantity span {
        font-size: 1.1rem;
        min-width: 35px;
    }
    
    /* Remove Button - Larger Touch Target */
    .remove-cart {
        font-size: 1.8rem;
        padding: 5px;
        top: 5px;
        right: 5px;
    }
    
    /* Cart Summary - Better Spacing */
    .cart-summary {
        padding: 15px;
    }
    
    .cart-total {
        padding: 8px 0;
        font-size: 0.95rem;
    }
    
    .cart-total.grand-total {
        font-size: 1.2rem;
    }
    
    .checkout-btn {
        padding: 15px;
        font-size: 1rem;
    }
    
    /* Checkout Modal - Full Screen on Mobile */
    .checkout-modal-content {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
        border: none;
    }
    
    .checkout-form {
        padding: 20px 15px;
    }
    
    .form-section {
        margin-bottom: 25px;
    }
    
    .form-section h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    /* Form Inputs - Better Touch Targets */
    .checkout-form input,
    .checkout-form textarea {
        padding: 14px 12px;
        margin-bottom: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Checkout Summary - Compact on Mobile */
    .checkout-summary {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .checkout-summary h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .checkout-item {
        padding: 8px 0;
        font-size: 0.9rem;
    }
    
    .checkout-total-row {
        padding: 6px 0;
        font-size: 0.95rem;
    }
    
    .checkout-total-row.grand-total {
        font-size: 1.3rem;
    }
    
    /* Place Order Button - Full Width */
    .place-order-btn {
        padding: 16px;
        font-size: 1.1rem;
    }
    
    /* Close Button - Larger Touch Target */
    .close-modal {
        width: 50px;
        height: 50px;
        font-size: 35px;
        right: 15px;
        top: 15px;
    }
    
    .close-cart {
        font-size: 35px;
    }
    
    /* Add to Cart Button in Modal */
    .add-to-cart-btn {
        font-size: 0.95rem;
        padding: 12px 20px;
    }
}

.checkout-btn {
    width: 100%;
    margin-top: 15px;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Checkout Modal */
.checkout-modal-content {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.checkout-form {
    padding: 40px;
}

.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #000;
    letter-spacing: 1px;
}

.checkout-form input,
.checkout-form textarea {
    transition: transform 0.3s;
}

.remove-cart:hover {
    transform: scale(1.3);
}

/* Cart Summary */
.cart-summary {
    padding: 20px;
    background: #f9f9f9;
    border-top: 3px solid #000;
    position: sticky;
    bottom: 0;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 1rem;
    color: #666;
}

.cart-total.grand-total {
    font-size: 1.3rem;
    font-weight: bold;
    color: #000;
    border-top: 2px solid #000;
    margin-top: 10px;
    padding-top: 15px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s;
    background: #000;
    color: #e8e4dc;
    border: none;
}

.qty-btn:hover {
    background: #333;
    transform: scale(1.1);
}

.cart-item-quantity span {
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

.remove-cart {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: #ff0000;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #000;
}

.cart-item-info p {
    margin: 3px 0;
    font-size: 0.9rem;
    color: #666;
}

.cart-item-price {
    font-weight: bold;
    color: #000;
    font-size: 1.1rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.qty-btn {
    background: #000;
    color: #e8e4dc;
    border: none;
    text-align: center;
    color: #999;
    padding: 40px 20px;
    font-style: italic;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border: 2px solid #000;
    margin-bottom: 15px;
    background: #f9f9f9;
    transition: all 0.3s;
    position: relative;
}

.cart-item:hover {
    transform: translateX(-5px);
    box-shadow: 5px 5px 0 #000;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: #e8e4dc;
    border: 2px solid #000;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.cart-header {
    background: #000;
    color: #e8e4dc;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.cart-header h3 {
    margin: 0;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.close-cart {
    font-size: 30px;
    cursor: pointer;
    transition: transform 0.3s;
}

.close-cart:hover {
    transform: rotate(90deg);
}

.cart-items {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    color: #999;
    padding: 40px 20px;
    font-style: italic;
}

#cartCount {
    background: #e8e4dc;
    color: #000;
    padding: 2px 8px;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: bold;
    margin-left: 5px;
}

/* Cart Panel */
.cart-panel {
    position: fixed;
    right: -450px;
    top: 0;
    width: 450px;
    height: 100%;
    background: #fff;
    border-left: 3px solid #000;
    z-index: 1500;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
}

.cart-panel.active {
    right: 0;
}

