/* ========== Variables ========== */
:root {
    --primary-purple: #2d1b4e;
    --primary-purple-light: #4a2d7a;
    --primary-purple-dark: #1a0f2e;
    --accent-purple: #c47a3a;
    --accent-gold: #c47a3a;
    --accent-gold-light: #d4944f;
    --light-bg: #faf8f6;
    --dark-bg: #1a0f2e;
    --text-dark: #1a1a2e;
    --text-light: #e0e0e0;
    --border-color: #e8e0f0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --whatsapp-green: #25d366;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--light-bg);
    overflow-x: hidden;
}

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

/* ========== Header ========== */
.header {
    background: #2a1a4a;
    color: white;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(196, 122, 58, 0.15);
}

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

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

.logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    max-width: 280px;
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-dot {
    color: var(--accent-purple);
    font-size: 2.5rem;
}

.tagline {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-left: 1rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-purple);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 2.5px;
    background-color: white;
    transition: var(--transition);
    border-radius: 2px;
}

/* ========== Cart Icon ========== */
.cart-icon {
    position: relative;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--accent-purple);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    animation: badgePop 0.3s ease;
}

.cart-badge.visible {
    display: flex;
}

@keyframes badgePop {
    0% { transform: scale(0); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* ========== Cart Modal ========== */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    backdrop-filter: blur(4px);
}

.cart-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    animation: fadeIn 0.3s ease;
}

.cart-modal-content {
    background: white;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    padding: 30px;
    display: flex;
    flex-direction: column;
    animation: slideFromRight 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
}

.cart-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: var(--transition);
}

.cart-close:hover {
    color: var(--primary-purple);
}

.cart-modal-content h2 {
    color: var(--primary-purple);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.cart-empty svg {
    margin-bottom: 16px;
    opacity: 0.4;
}

.cart-empty p {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.cart-empty span {
    font-size: 0.9rem;
    opacity: 0.7;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--light-bg);
    border-radius: 10px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.cart-item:hover {
    background: rgba(45, 27, 78, 0.05);
}

.cart-item-color {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
}

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

.cart-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--primary-purple);
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-purple);
    transition: var(--transition);
}

.cart-item-qty-btn:hover {
    background: var(--primary-purple);
    color: white;
    border-color: var(--primary-purple);
}

.cart-item-qty {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #dc2626;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 4px;
    transition: var(--transition);
    opacity: 0.6;
}

.cart-item-remove:hover {
    opacity: 1;
    transform: scale(1.2);
}

.cart-footer {
    border-top: 2px solid var(--border-color);
    padding-top: 20px;
    margin-top: 10px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1.2rem;
    font-weight: 700;
}

.cart-total #cartTotal {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
}

.cart-checkout-btn {
    width: 100%;
    margin-bottom: 10px;
}

.cart-clear-btn {
    width: 100%;
    font-size: 0.85rem;
    padding: 10px;
}

@keyframes slideFromRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========== Hero Section ========== */
.hero {
    background: linear-gradient(180deg, var(--light-bg) 0%, rgba(45, 27, 78, 0.05) 100%);
    padding: 100px 20px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 15, 46, 0.55) 0%, rgba(45, 27, 78, 0.35) 50%, rgba(196, 122, 58, 0.1) 100%);
    z-index: 1;
}

.hero.has-bg-image .hero-text h2 {
    -webkit-text-fill-color: white;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero.has-bg-image .hero-text p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero.has-bg-image .btn-secondary {
    color: white;
    border-color: white;
}

.hero.has-bg-image .btn-secondary:hover {
    background: white;
    color: var(--primary-purple);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45, 27, 78, 0.1), transparent);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196, 122, 58, 0.08), transparent);
    border-radius: 50%;
    animation: float-slow 12s ease-in-out infinite;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

.hero-brand {
    font-size: 4.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold), #e8a95b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-brand-accent {
    color: var(--accent-gold);
    -webkit-text-fill-color: var(--accent-gold);
}

.hero.has-bg-image .hero-brand {
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.hero-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    -webkit-text-fill-color: initial;
    letter-spacing: 1px;
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    opacity: 0.8;
}

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

.hero-visual {
    position: relative;
    height: 400px;
}

.floating-shape {
    position: absolute;
    opacity: 0.5;
    animation-duration: 6s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 6s ease-in-out infinite;
    top: 10%;
    right: 10%;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(225deg, var(--accent-purple), var(--primary-purple-light));
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    animation: float-slow 8s ease-in-out infinite;
    bottom: 20%;
    right: 30%;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-purple-light), var(--accent-purple));
    border-radius: 50%;
    animation: float 5s ease-in-out infinite;
    bottom: 10%;
    right: 50%;
}

/* ========== Buttons ========== */
.btn {
    padding: 13px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-purple), var(--primary-purple));
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 27, 78, 0.3);
}

.btn-primary.glow {
    box-shadow: 0 0 20px rgba(45, 27, 78, 0.3);
}

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

.btn-secondary:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 27, 78, 0.2);
}

/* ========== Products Section ========== */
/* Shipping Banner */
.shipping-banner {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-light));
    color: white;
    padding: 14px 20px;
    text-align: center;
}

.shipping-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 600px) {
    .shipping-banner .container {
        flex-direction: column;
        gap: 6px;
    }

    .shipping-banner .container span:nth-child(even) {
        display: none;
    }
}

.products {
    padding: 100px 20px;
    background: var(--light-bg);
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Category Filters */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 24px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    background: white;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.category-btn.active {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-gold));
    color: white;
    border-color: transparent;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.load-more-btn {
    display: block;
    margin: 2rem auto 0;
    padding: 14px 40px;
    font-size: 1rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(45, 27, 78, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(45, 27, 78, 0.2);
    border-color: var(--accent-purple);
}

.product-image {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    height: 220px;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.product-card h3,
.product-card p {
    padding: 0 1.5rem;
}

.product-card h3 {
    padding-top: 1.5rem;
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
}

.product-description {
    font-size: 0.95rem;
    color: #666;
    margin: 0.5rem 0 1rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    padding: 1rem 1.5rem 0;
}

.product-card .btn {
    margin: 1rem 1.5rem 1.5rem;
    width: calc(100% - 3rem);
}

/* ========== Product Image Carousel ========== */
.product-carousel {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
}

.product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-slide.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.product-carousel:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }

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

.product-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.product-dot.active {
    background: white;
    transform: scale(1.3);
}

.photo-count {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

/* ========== Testimonials Section ========== */
.testimonials {
    padding: 100px 20px;
    background: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-purple), var(--accent-purple), transparent);
}

.testimonials-slider {
    max-width: 700px;
    margin: 3rem auto 0;
    position: relative;
    min-height: 280px;
}

.testimonial-card {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.03), rgba(196, 122, 58, 0.03));
    border-radius: 16px;
    border: 1px solid var(--border-color);
    animation: fadeInUp 0.5s ease;
}

.testimonial-card.active {
    display: flex;
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1.4rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 24px;
    max-width: 550px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-author div:last-child {
    text-align: left;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--primary-purple);
    opacity: 0.8;
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.testimonial-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: white;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--primary-purple);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav-btn:hover {
    background: var(--primary-purple);
    color: white;
    border-color: var(--primary-purple);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--primary-purple);
    transform: scale(1.2);
}

/* ========== About Section ========== */
.about {
    padding: 100px 20px;
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text h3 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.05), rgba(196, 122, 58, 0.05));
    border-radius: 10px;
    border-left: 4px solid var(--primary-purple);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateX(5px);
    border-left-color: var(--accent-purple);
}

.benefit-icon {
    font-size: 1.5rem;
    color: var(--primary-purple);
    flex-shrink: 0;
}

.benefit-item p {
    margin: 0;
}

.about-image-large {
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(45, 27, 78, 0.2);
}

.about-real-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.about-image-large:hover .about-real-img {
    transform: scale(1.03);
}

/* ========== Contact Section ========== */
.contact {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--light-bg), rgba(45, 27, 78, 0.08));
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(45, 27, 78, 0.1);
    background: white;
}

/* ========== Footer ========== */
.footer {
    background: linear-gradient(135deg, var(--dark-bg), var(--primary-purple-dark));
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer .container {
    margin-bottom: 3rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-purple);
}

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

.social-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-icon svg {
    flex-shrink: 0;
}

.social-icon:hover {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(45, 27, 78, 0.2);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

/* ========== WhatsApp Float Button ========== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 1500;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::after {
    content: 'Fale conosco!';
    position: absolute;
    right: 72px;
    background: white;
    color: var(--text-dark);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover::after {
    opacity: 1;
}

/* ========== Checkout Modal ========== */
.checkout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2500;
    backdrop-filter: blur(4px);
    overflow-y: auto;
    padding: 20px;
}

.checkout-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 40px;
    animation: fadeIn 0.3s ease;
}

.checkout-content {
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(45, 27, 78, 0.3);
    position: relative;
    animation: fadeInUp 0.4s ease;
}

.checkout-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: var(--transition);
}

.checkout-close:hover {
    color: var(--primary-purple);
}

.checkout-content h2 {
    color: var(--primary-purple);
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.checkout-content h3 {
    color: var(--text-dark);
    font-size: 1rem;
    margin: 20px 0 12px;
}

/* Checkout Summary */
.checkout-summary {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 8px;
}

.checkout-summary-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
    max-height: 150px;
    overflow-y: auto;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #555;
}

.checkout-item span:last-child {
    font-weight: 600;
    color: var(--text-dark);
}

.checkout-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid var(--border-color);
    padding-top: 12px;
    font-size: 1.1rem;
}

.checkout-summary-total strong {
    font-size: 1.3rem;
    color: var(--primary-purple);
}

.checkout-frete-row {
    border-top: 1px dashed #ddd;
    padding-top: 8px;
    font-size: 0.95rem;
}

.checkout-frete-row strong {
    font-size: 1rem !important;
    color: #666 !important;
}

.checkout-total-final {
    border-top: 2px solid var(--primary-purple);
    padding-top: 10px;
    margin-top: 4px;
}

.checkout-total-final strong {
    font-size: 1.4rem !important;
    color: var(--primary-purple) !important;
}

/* Frete info box */
.frete-info {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border: 1px solid #86efac;
    border-radius: 10px;
    padding: 12px 16px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 0.3s ease;
}

.frete-result {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

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

.frete-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.frete-details strong {
    color: #16a34a;
    font-size: 1.05rem;
}

.frete-details span {
    color: #666;
    font-size: 0.85rem;
}

/* Payment Options */
.payment-option {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 8px;
}

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

.payment-option.selected {
    border-color: var(--accent-gold);
    background: rgba(196, 122, 58, 0.05);
}

.payment-option-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pix-icon {
    background: rgba(45, 27, 78, 0.08);
}

.mp-icon {
    background: rgba(196, 122, 58, 0.1);
}

.payment-option-header div:nth-child(2) {
    flex: 1;
}

.payment-option-header strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
}

.payment-option-header span {
    font-size: 0.82rem;
    color: #888;
}

.payment-badge {
    background: var(--accent-gold);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    white-space: nowrap;
}

/* Payment Details */
.payment-details {
    border: 2px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 20px;
    margin-top: -10px;
    margin-bottom: 12px;
    background: var(--light-bg);
    animation: fadeInUp 0.3s ease;
}

/* PIX */
.pix-qr-area {
    text-align: center;
    margin-bottom: 16px;
}

.pix-qr-img {
    width: 180px;
    height: 180px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    background: white;
    padding: 8px;
    margin-bottom: 8px;
}

.pix-qr-area p {
    font-size: 0.85rem;
    color: #888;
}

.pix-copy-area {
    margin-bottom: 16px;
}

.pix-copy-area label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    display: block;
    margin-bottom: 6px;
}

.pix-key-row {
    display: flex;
    gap: 8px;
}

.pix-key-row input {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.9rem;
    background: white;
    color: var(--text-dark);
}

.btn-copy {
    padding: 10px 18px;
    background: var(--primary-purple);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-copy:hover {
    background: var(--primary-purple-light);
}

.btn-copy.copied {
    background: #16a34a;
}

.pix-instructions {
    background: white;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 4px;
}

.pix-instructions p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.pix-instructions ol {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pix-instructions li {
    font-size: 0.85rem;
    color: #555;
}

/* PIX Section */
/* Checkout Address Form */
.checkout-address {
    background: #f8f6f3;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.address-row {
    display: flex;
    gap: 10px;
}

.address-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.address-field.full {
    flex: 1;
}

.address-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
}

.address-field input {
    padding: 10px 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}

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

@media (max-width: 480px) {
    .address-row {
        flex-direction: column;
    }
}

.pix-section {
    background: #f8f6f3;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

/* WhatsApp Checkout Button */
/* Payment Tabs */
.payment-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.payment-tab {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: white;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.payment-tab:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

.payment-tab.active {
    border-color: var(--primary-purple);
    background: linear-gradient(135deg, #f3e8ff, #ede9fe);
    color: var(--primary-purple);
}

.payment-panel {
    display: none;
}

.payment-panel.active {
    display: block;
    animation: fadeInUp 0.3s ease;
}

/* Cartão Section */
.cartao-section {
    text-align: center;
    padding: 20px;
}

.cartao-info {
    background: linear-gradient(135deg, #eff6ff, #e0f2fe);
    border: 1px solid #93c5fd;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    text-align: left;
}

.cartao-info p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #1e40af;
}

.cartao-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cartao-info ul li {
    padding: 4px 0;
    color: #555;
    font-size: 0.9rem;
}

.cartao-info ul li::before {
    content: '✓ ';
    color: #16a34a;
    font-weight: bold;
}

.cartao-pay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cartao-pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.cartao-pay-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.cartao-secure {
    font-size: 0.8rem;
    color: #999;
    margin-top: 12px;
}

.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.checkout-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    font-size: 1.05rem;
    padding: 16px 24px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.checkout-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #2be06f, #159e8a);
}

@media (max-width: 480px) {
    .checkout-content {
        padding: 24px 18px;
    }

    .pix-qr-img {
        width: 150px;
        height: 150px;
    }
}

/* ========== Image Lightbox ========== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    animation: fadeInUp 0.3s ease;
    user-select: none;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 3001;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    padding: 10px 18px;
    border-radius: 8px;
    opacity: 0.6;
    transition: opacity 0.2s, background 0.2s;
    z-index: 3001;
}

.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .lightbox-prev,
    .lightbox-next {
        font-size: 2rem;
        padding: 8px 14px;
    }

    .lightbox-prev { left: 6px; }
    .lightbox-next { right: 6px; }
}

/* ========== Size Guide Modal ========== */
.size-guide-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    backdrop-filter: blur(4px);
    overflow-y: auto;
    padding: 20px;
}

.size-guide-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.size-guide-content {
    background: white;
    border-radius: 16px;
    padding: 36px;
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(45, 27, 78, 0.3);
    position: relative;
    animation: fadeInUp 0.4s ease;
}

.size-guide-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: var(--transition);
}

.size-guide-close:hover {
    color: var(--primary-purple);
}

.size-guide-content h2 {
    color: var(--primary-purple);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.size-guide-intro {
    color: #666;
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.size-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.size-tab {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    color: var(--text-dark);
}

.size-tab.active {
    border-color: var(--primary-purple);
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    color: white;
}

.size-tab:hover:not(.active) {
    border-color: var(--primary-purple-light);
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.size-table th {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    color: white;
    padding: 12px 16px;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
}

.size-table th:first-child {
    border-radius: 8px 0 0 0;
}

.size-table th:last-child {
    border-radius: 0 8px 0 0;
}

.size-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.size-table tr:last-child td:first-child {
    border-radius: 0 0 0 8px;
}

.size-table tr:last-child td:last-child {
    border-radius: 0 0 8px 0;
}

.size-table tbody tr:hover {
    background: rgba(45, 27, 78, 0.04);
}

.size-table td:first-child {
    font-weight: 700;
    color: var(--primary-purple);
}

.size-guide-tips {
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.05), rgba(196, 122, 58, 0.05));
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-purple);
}

.size-guide-tips h4 {
    color: var(--primary-purple);
    margin-bottom: 12px;
    font-size: 1rem;
}

.size-guide-tips ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.size-guide-tips li {
    font-size: 0.9rem;
    color: #555;
    padding-left: 16px;
    position: relative;
}

.size-guide-tips li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
    font-weight: bold;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--dark-bg), var(--primary-purple-dark));
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-top: 1px solid rgba(45, 27, 78, 0.2);
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(45, 27, 78, 0.1);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-brand {
        font-size: 3rem;
    }

    .hero-text h2 {
        font-size: 1.6rem;
    }

    .hero-visual {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h3 {
        font-size: 1.8rem;
    }

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

    .cart-modal-content {
        max-width: 100%;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .size-guide-content {
        padding: 24px;
    }

    .size-tabs {
        flex-direction: column;
    }

    .size-table th,
    .size-table td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 50px;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .tagline {
        display: none;
    }

    .nav-menu {
        gap: 0;
    }

    .hero {
        padding: 60px 20px;
        min-height: 400px;
    }

    .hero-brand {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .hero-text h2 {
        font-size: 1.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

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

    .section-title {
        font-size: 1.6rem;
    }

    .btn {
        padding: 11px 24px;
        font-size: 0.9rem;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }

    .benefit-item {
        padding: 1rem;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-float::after {
        display: none;
    }
}

/* ========== Admin Floating Button ========== */
/* Admin button hidden in header */
.admin-header-btn {
    background: transparent;
    border: none;
    color: transparent;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
    opacity: 0;
    width: 20px;
    height: 20px;
}

.admin-header-btn:hover {
    opacity: 0;
}

/* ========== Admin Panel (Full Screen) ========== */
.admin-panel-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    backdrop-filter: blur(4px);
}

.admin-panel-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.admin-panel {
    background: white;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.admin-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 2px solid var(--border-color);
    background: linear-gradient(135deg, var(--dark-bg), var(--primary-purple-dark));
    color: white;
}

.admin-panel-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-panel-title h2 {
    font-size: 1.3rem;
    margin: 0;
}

.admin-panel-close {
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 0 8px;
    opacity: 0.7;
    transition: var(--transition);
}

.admin-panel-close:hover {
    opacity: 1;
}

.admin-panel-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex: 1;
    overflow: auto;
}

.admin-panel-left,
.admin-panel-right {
    padding: 24px;
    overflow-y: auto;
}

.admin-panel-left {
    border-right: 2px solid var(--border-color);
    background: var(--light-bg);
}

.admin-panel-section h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

/* Quick Templates */
.admin-hint {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
}

.quick-templates {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.quick-template-btn {
    padding: 8px 16px;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    background: white;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.quick-template-btn:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
    background: rgba(45, 27, 78, 0.05);
}

.quick-template-btn:active {
    transform: scale(0.95);
    background: var(--primary-purple);
    color: white;
}

/* Admin Product Form */
.admin-product-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.admin-product-form label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-top: 8px;
}

.admin-product-form input[type="text"],
.admin-product-form input[type="number"],
.admin-product-form textarea {
    padding: 12px 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: white;
}

.admin-product-form input:focus,
.admin-product-form textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(45, 27, 78, 0.1);
}

/* Image Upload Area */
.image-upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: white;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 6px;
}

.image-upload-area:hover,
.image-upload-area.dragover {
    border-color: var(--primary-purple);
    background: rgba(45, 27, 78, 0.03);
}

.image-upload-area.dragover {
    border-color: var(--accent-purple);
    background: rgba(196, 122, 58, 0.08);
}

.image-upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.image-upload-placeholder p {
    font-weight: 600;
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.image-upload-placeholder span {
    font-size: 0.8rem;
    color: #999;
}

.image-preview {
    max-width: 100%;
    max-height: 180px;
    border-radius: 8px;
    object-fit: contain;
}

.image-url-row {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.image-url-row input {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
}

.image-url-row input:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.btn-preview-url {
    padding: 10px 16px;
    background: var(--primary-purple);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-preview-url:hover {
    background: var(--primary-purple-light);
}

/* Multi-Image Preview List */
.images-preview-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}

.img-preview-item {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.img-preview-item:hover {
    border-color: var(--primary-purple);
}

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

.img-preview-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.9);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.img-preview-item:hover .img-preview-remove {
    opacity: 1;
}

.img-preview-num {
    position: absolute;
    bottom: 2px;
    left: 2px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.65rem;
    padding: 1px 5px;
    border-radius: 4px;
    font-weight: 600;
}

.admin-photo-count {
    display: inline-block;
    background: rgba(45, 27, 78, 0.1);
    color: var(--primary-purple);
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    margin-left: 6px;
    vertical-align: middle;
}

/* Color Picker */
.color-picker-area {
    margin-bottom: 8px;
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.color-option {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s;
    user-select: none;
}

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

.color-option input {
    display: none;
}

.color-option input:checked + .color-swatch {
    box-shadow: 0 0 0 2px white, 0 0 0 4px var(--accent-gold);
}

.color-option:has(input:checked) {
    border-color: var(--accent-gold);
    background: rgba(196, 122, 58, 0.08);
}

.color-swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Product Color Dots */
.product-colors {
    display: flex;
    gap: 6px;
    padding: 0 1.5rem;
    margin-top: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.product-color-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    cursor: default;
    transition: transform 0.2s;
}

.product-color-dot:hover {
    transform: scale(1.2);
}

.admin-form-buttons {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    padding-bottom: 20px;
}

.admin-save-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Admin Products Grid */
.admin-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-list-header h3 {
    margin: 0;
}

.admin-list-actions {
    display: flex;
    gap: 8px;
}

.admin-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: white;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    color: #666;
    transition: var(--transition);
}

.admin-action-btn:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

.admin-action-btn.danger:hover {
    border-color: #dc2626;
    color: #dc2626;
}

.admin-products-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    max-height: calc(100vh - 200px);
    padding-right: 4px;
}

.admin-prod-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: var(--transition);
}

.admin-prod-card:hover {
    border-color: var(--primary-purple-light);
    box-shadow: 0 2px 12px rgba(45, 27, 78, 0.1);
}

.admin-prod-thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
    overflow: hidden;
}

.admin-prod-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-prod-info {
    flex: 1;
    min-width: 0;
}

.admin-prod-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.admin-prod-price {
    font-size: 0.9rem;
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 4px;
}

.admin-prod-desc {
    font-size: 0.82rem;
    color: #888;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-prod-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}

.admin-prod-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
    white-space: nowrap;
}

.admin-prod-btn.edit {
    background: rgba(45, 27, 78, 0.1);
    color: var(--primary-purple);
}

.admin-prod-btn.edit:hover {
    background: var(--primary-purple);
    color: white;
}

.admin-prod-btn.duplicate {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.admin-prod-btn.duplicate:hover {
    background: #2563eb;
    color: white;
}

.admin-prod-btn.delete {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

.admin-prod-btn.delete:hover {
    background: #dc2626;
    color: white;
}

/* Admin Responsive */
@media (max-width: 768px) {
    .admin-panel-body {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .admin-panel-left {
        border-right: none;
        border-bottom: 2px solid var(--border-color);
        overflow: visible;
    }

    .admin-panel-right {
        overflow: visible;
    }

    .admin-products-grid {
        max-height: none;
    }

}

/* ========== Animations ========== */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
}

@keyframes float-slow {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(30px);
    }
}

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

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

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

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