/* ========================================
   PINK PERAKKA - Premium Women's Fashion
   ======================================== */

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

:root {
    --primary: #FF69B4;
    --primary-dark: #FF1493;
    --secondary: #FFC0CB;
    --accent: #FFD700;
    --dark: #1a1a1a;
    --gray: #666;
    --light-gray: #f9f9f9;
    --white: #ffffff;
    --border: #e5e5e5;
    --success: #4CAF50;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* ========================================
   ANNOUNCEMENT BAR
   ======================================== */
.announcement-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 12px 0;
    overflow: hidden;
}

.announcement-slider {
    animation: slideText 20s linear infinite;
}

.announcement-text {
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

@keyframes slideText {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar {
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Brand container */
.nav-brand a {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

/* Logo image size */
.logo-image {
    width: 100px;      /* desktop */
    height: 100px;
    object-fit: contain;
}

/* Tablet */
@media (max-width: 768px) {
    .logo-image {
        width: 80px;
        height: 80px;
    }

    .nav-brand a {
        font-size: 22px;
        gap: 8px;
    }

    .nav-container {
        padding: 0 24px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .logo-image {
        width: 80px;
        height: 80px;
    }

    .nav-brand a {
        font-size: 18px;
        gap: 6px;
    }

    .nav-container {
        height: 70px;
        padding: 0 16px;
    }
}
brand-icon {
    font-size: 28px;
    animation: rotate 3s ease-in-out infinite;
}

@keyframes rotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-icon {
    font-size: 20px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-icon:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.cart-count,
.wishlist-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-size: 10px;
    min-width: 18px;
    height: 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    padding: 0 5px;
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF0F5 0%, #FFE4E9 100%);
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero-shape.shape-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -250px;
}

.hero-shape.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -200px;
    animation-delay: 5s;
}

.hero-shape.shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 40px;
    animation: fadeInUp 1s ease-out;
    margin-bottom: 200px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.2);
    animation: fadeInDown 1s ease-out 0.2s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sparkle {
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(50px, 8vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title .line {
    display: block;
    animation: slideUp 1s ease-out both;
}

.hero-title .line:first-child {
    animation-delay: 0.4s;
}

.hero-title .line:last-child {
    animation-delay: 0.6s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient 3s linear infinite;
}

@keyframes gradient {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.6s, height 0.6s;
    transform: translate(-50%, -50%);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span,
.btn i {
    position: relative;
    z-index: 1;
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.4);
}

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

.btn-outline::before {
    background: var(--primary);
}

.btn-outline:hover {
    color: var(--white);
    transform: translateY(-3px);
}

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

.hero-features {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
}

.feature-item i {
    color: var(--primary);
    font-size: 20px;
}

.feature-divider {
    width: 1px;
    height: 25px;
    background: var(--border);
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 80%;
    z-index: 1;
    animation: fadeInRight 1s ease-out 0.5s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px 0 0 30px;
    box-shadow: -30px 30px 60px rgba(0, 0, 0, 0.1);
}

/* Hero Slider Styles */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 30px 0 0 30px;
    box-shadow: -30px 30px 60px rgba(0, 0, 0, 0.1);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF0F5 0%, #FFE4E9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 30px 0 0 30px;
    max-width: 100%;
    max-height: 100%;
}

/* Product Tags */
.product-tag {
    position: absolute;
    top: 25px;
    left: 25px;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 3;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
    color: var(--white);
}

.new-arrival-tag {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.4);
}

.best-seller-tag {
    background: linear-gradient(135deg, #FF6347, #FF4500);
    box-shadow: 0 5px 20px rgba(255, 99, 71, 0.4);
}

.trending-tag {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2) 0%, transparent 60%);
    border-radius: 30px 0 0 30px;
    z-index: 2;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    transition: all 0.2s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot.active,
.dot:hover {
    background: var(--white);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 35%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 10px;
    z-index: 10;
    animation: fadeInUp 0.6s ease-out 0.8s both;
    pointer-events: none;
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid var(--primary);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.scroll-indicator span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
}

/* ========================================
   PROMO BANNER
   ======================================== */
.promo-banner {
    padding: 60px 0;
    background: var(--white);
}

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

.promo-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.4s ease;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.promo-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.3);
}

.promo-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.promo-card p {
    font-size: 14px;
    color: var(--gray);
}

/* ========================================
   SECTIONS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 50px);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* ========================================
   CATEGORIES
   ======================================== */
.categories {
    padding: 100px 0;
    background: var(--light-gray);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card.large {
    grid-row: span 2;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.category-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.category-card:not(.large) .category-image {
    height: 400px;
}

.category-card.large .category-image {
    height: 100%;
}

.category-image img,
.placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-image img,
.category-card:hover .placeholder-img {
    transform: scale(1.1);
}

.placeholder-img {
    background: linear-gradient(135deg, #FFB6C1 0%, #FF69B4 100%);
    position: relative;
}

.placeholder-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.placeholder-img.pink {
    background: linear-gradient(135deg, #FFB6C1 0%, #FF69B4 100%);
}

.placeholder-img.purple {
    background: linear-gradient(135deg, #DDA0DD 0%, #BA55D3 100%);
}

.placeholder-img.gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    transition: background 0.5s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(255, 105, 180, 0.8) 0%, rgba(255, 105, 180, 0.3) 50%, transparent 100%);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: var(--white);
    transition: transform 0.5s ease;
}

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

.category-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.category-content p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--white);
    transition: all 0.3s ease;
}

.category-btn i {
    transition: transform 0.3s ease;
}

.category-card:hover .category-btn {
    gap: 12px;
}

.category-card:hover .category-btn i {
    transform: translateX(5px);
}

/* ========================================
   PRODUCTS
   ======================================== */
.products {
    padding: 100px 0;
    background: var(--white);
}

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

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--border);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    z-index: 2;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

.product-badge.sale {
    background: linear-gradient(135deg, #FF6347, #FF4500);
}

.product-badge.trending {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.product-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.placeholder-product {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    transition: transform 0.5s ease;
}

.product-card:hover .placeholder-product {
    transform: scale(1.1);
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
}

.product-rating i {
    color: #FFD700;
    font-size: 14px;
}

.product-rating span {
    font-size: 13px;
    color: var(--gray);
    margin-left: 5px;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.sale-price {
    color: var(--primary);
}

.original-price {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray);
    text-decoration: line-through;
    margin-left: 10px;
}

.btn-add-cart {
    width: 100%;
    padding: 12px;
    background: var(--light-gray);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

/* ========================================
   ABOUT
   ======================================== */
.about {
    padding: 100px 0;
    background: var(--light-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    width: 100%;
}

.about-image img {
    width: 100%;
    height: auto;              /* ✅ responsive */
    max-height: 600px;         /* desktop limit */
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Mobile specific fix */
@media (max-width: 768px) {
    .about-image img {
        height: 280px;         /* or 300px */
        object-fit: cover;
        border-radius: 14px;
    }
}


.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.4);
    text-align: center;
}

.badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-content {
    text-align: left;
}

.about-content .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.about-features {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-feature i {
    color: var(--primary);
    font-size: 24px;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}
/*========================================
TESTIMONIALS
======================================== */
.testimonials {
padding: 100px 0;
background: var(--white);
}
.testimonial-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
.testimonial-card {
background: var(--light-gray);
padding: 40px;
border-radius: 20px;
transition: all 0.4s ease;
}
.testimonial-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
background: var(--white);
}
.testimonial-rating {
display: flex;
gap: 5px;
margin-bottom: 20px;
}
.testimonial-rating i {
color: #FFD700;
font-size: 18px;
}
.testimonial-text {
font-size: 15px;
line-height: 1.8;
color: var(--gray);
margin-bottom: 25px;
font-style: italic;
}
.testimonial-author {
display: flex;
align-items: center;
gap: 15px;
}
.author-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
background: linear-gradient(135deg, var(--primary), var(--primary-dark));
color: var(--white);
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
font-weight: 700;
}
.author-info h4 {
font-size: 16px;
font-weight: 600;
margin-bottom: 3px;
}
.author-info span {
font-size: 13px;
color: var(--gray);
}
/* ========================================
NEWSLETTER
======================================== */
.newsletter {
padding: 100px 0;
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
color: var(--white);
text-align: center;
}
.newsletter-content {
max-width: 700px;
margin: 0 auto;
}
.newsletter-icon {
font-size: 60px;
margin-bottom: 20px;
animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-15px);
}
}
.newsletter h2 {
font-family: 'Playfair Display', serif;
font-size: 42px;
font-weight: 700;
margin-bottom: 15px;
}
.newsletter p {
font-size: 16px;
opacity: 0.95;
margin-bottom: 35px;
}
.newsletter-form {
max-width: 600px;
margin: 0 auto;
}
.form-group {
display: flex;
gap: 10px;
margin-bottom: 20px;
}
.form-group input {
flex: 1;
padding: 18px 25px;
border: none;
border-radius: 50px;
font-size: 15px;
font-family: 'Poppins', sans-serif;
}
.form-group input:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}
.newsletter-note {
font-size: 14px;
opacity: 0.9;
}
/* ========================================
CONTACT
======================================== */
.contact {
padding: 100px 0;
background: var(--light-gray);
}
.contact-grid {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 60px;
}
.contact-info h2 {
font-family: 'Playfair Display', serif;
font-size: 42px;
font-weight: 700;
margin-bottom: 15px;
}
.contact-info > p {
font-size: 16px;
color: var(--gray);
margin-bottom: 40px;
}
.contact-details {
margin-bottom: 40px;
}
.contact-item {
display: flex;
gap: 20px;
margin-bottom: 30px;
}
.contact-icon {
width: 50px;
height: 50px;
border-radius: 50%;
background: linear-gradient(135deg, var(--primary), var(--primary-dark));
color: var(--white);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
font-size: 20px;
}
.contact-text h4 {
font-size: 16px;
font-weight: 600;
margin-bottom: 5px;
color: var(--dark);
}
.contact-text a,
.contact-text p {
font-size: 15px;
color: var(--gray);
}
.contact-text a:hover {
color: var(--primary);
}
.social-links {
display: flex;
gap: 15px;
}
.social-btn {
width: 50px;
height: 50px;
border-radius: 50%;
background: var(--white);
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
color: var(--dark);
transition: all 0.3s ease;
border: 2px solid var(--border);
}
.social-btn:hover {
background: linear-gradient(135deg, var(--primary), var(--primary-dark));
color: var(--white);
border-color: transparent;
transform: translateY(-5px);
}
.contact-form-wrapper {
background: var(--white);
padding: 40px;
border-radius: 20px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
.form-group {
margin-bottom: 20px;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 15px 20px;
border: 2px solid var(--border);
border-radius: 10px;
font-size: 15px;
font-family: 'Poppins', sans-serif;
transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}
.form-group textarea {
resize: vertical;
min-height: 120px;
}
/* ========================================
FOOTER
======================================== */
.footer {
background: #1a1a1a;
color: var(--white);
padding: 80px 0 30px;
}
.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 40px;
margin-bottom: 50px;
padding-bottom: 50px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
font-family: 'Playfair Display', serif;
font-size: 28px;
font-weight: 700;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 10px;
}
.footer-col p {
font-size: 14px;
line-height: 1.8;
opacity: 0.8;
margin-bottom: 25px;
}
.footer-social {
display: flex;
gap: 12px;
}
.footer-social a {
width: 45px;
height: 45px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
transition: all 0.3s ease;
}
.footer-social a:hover {
background: linear-gradient(135deg, var(--primary), var(--primary-dark));
transform: translateY(-5px);
}
.footer-col h4 {
font-size: 18px;
font-weight: 600;
margin-bottom: 25px;
}
.footer-links {
list-style: none;
}
.footer-links li {
margin-bottom: 12px;
}
.footer-links a {
font-size: 14px;
opacity: 0.8;
transition: all 0.3s ease;
}
.footer-links a:hover {
opacity: 1;
color: var(--primary);
padding-left: 5px;
}
.footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
}
.footer-bottom p {
font-size: 14px;
opacity: 0.7;
}
.payment-methods {
display: flex;
gap: 15px;
}
.payment-methods i {
font-size: 32px;
opacity: 0.6;
transition: opacity 0.3s ease;
}
.payment-methods i:hover {
opacity: 1;
}
/* ========================================
RESPONSIVE DESIGN
======================================== */
@media (max-width: 1200px) {
.category-grid,
.product-grid {
grid-template-columns: repeat(3, 1fr);
}
.hero-image {
    width: 45%;
}
}
@media (max-width: 1024px) {
.promo-grid {
grid-template-columns: repeat(2, 1fr);
}
.testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
}

.about-grid {
    gap: 50px;
}

.footer-grid {
    grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.nav-links {
display: none;
}
.mobile-menu-toggle {
    display: flex;
}

.hero {
    min-height: auto;
    flex-direction: column;
    padding: 40px 0 60px;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 450px;
    transform: none;
    margin-top: 40px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.product-tag {
    padding: 8px 16px;
    font-size: 11px;
    top: 15px;
    left: 15px;
}

.slider-dots {
    bottom: 70px;
}

.scroll-indicator {
    bottom: 20px;
    z-index: 10;
}

.hero-content {
    padding: 40px 20px 0;
}

.hero-title {
    font-size: 48px;
}

.hero-buttons {
    flex-direction: column;
}

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

.category-grid,
.product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.category-card.large {
    grid-row: span 1;
}

.promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}

.about-grid,
.contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}

.testimonial-grid {
    grid-template-columns: 1fr;
}

.footer-grid {
    grid-template-columns: 1fr;
}

.footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.form-row {
    grid-template-columns: 1fr;
}
}
@media (max-width: 480px) {
.hero-title {
font-size: 36px;
}
.section-title {
    font-size: 32px;
}

.category-grid,
.product-grid {
    grid-template-columns: 1fr;
}

.hero-features {
    flex-direction: column;
    gap: 15px;
}

.feature-divider {
    display: none;
}
}
/* ========================================
ANIMATIONS & UTILITIES
======================================== */
.animate-in {
opacity: 1 !important;
transform: translateY(0) !important;
}
@keyframes heartFloat {
0% {
opacity: 1;
transform: translateY(0) scale(1);
}
100% {
opacity: 0;
transform: translateY(-100px) scale(1.5);
}
}
@keyframes ripple {
to {
transform: scale(2);
opacity: 0;
}
}