/* ==================== CSS Variables ==================== */
:root {
    --primary-color: #c41e3a;
    --secondary-color: #d4af37;
    --accent-color: #ffd700;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --text-color: #333333;
    --red-dark: #8b0000;
    --gold-light: #f4e4c1;
    --gradient-1: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    --gradient-2: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    --gradient-3: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    --gradient-red-gold: linear-gradient(135deg, #c41e3a 0%, #d4af37 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-red: 0 5px 25px rgba(196, 30, 58, 0.3);
    --shadow-gold: 0 5px 25px rgba(212, 175, 55, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== Reset & Base Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--dark-color);
    font-weight: 600;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

/* ==================== Container ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== Navigation ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(196, 30, 58, 0.3);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 2px solid var(--secondary-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-brand .logo {
    height: 60px !important;
    width: 60px !important;
    border-radius: 8px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-brand .logo:hover {
    transform: scale(1.05);
}

.nav-brand .brand-text {
    display: flex;
    flex-direction: column;
}

.nav-brand h1 {
    font-size: 1.8rem;
    font-family: 'Segoe UI', sans-serif;
    background: var(--gradient-red-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: -5px;
    animation: shimmer 3s infinite;
}

.nav-brand .tagline {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
}

@keyframes shimmer {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--light-color);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-red-gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle:hover span {
    background: var(--primary-color);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/hero.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(196, 30, 58, 0.75) 50%, rgba(139, 0, 0, 0.8) 100%);
    animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--light-color);
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease, textGlow 3s ease-in-out infinite;
    color: var(--light-color);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5), 0 0 40px rgba(196, 30, 58, 0.3);
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.5), 0 0 40px rgba(196, 30, 58, 0.3);
    }
    50% {
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8), 0 0 60px rgba(196, 30, 58, 0.5), 0 0 80px rgba(255, 215, 0, 0.3);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--light-color);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--light-color);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 20% {
        top: 5px;
        opacity: 1;
    }
    100% {
        top: 18px;
        opacity: 0;
    }
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--light-color);
    box-shadow: var(--shadow-red);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(196, 30, 58, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--light-color);
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    transition: var(--transition);
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: #1a1a1a !important;
    border-color: var(--secondary-color);
}

.btn-secondary:hover span,
.btn-secondary:hover {
    color: #1a1a1a !important;
}

.btn-secondary span {
    position: relative;
    z-index: 1;
}

/* ==================== Categories Showcase Section ==================== */
.categories-showcase {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9f6f3 100%);
}

.categories-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-showcase-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    cursor: pointer;
    height: 350px;
}

.category-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(196, 30, 58, 0.3);
}

.category-showcase-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.category-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.category-showcase-card:hover .category-showcase-image img {
    transform: scale(1.1);
}

.category-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.9) 0%, rgba(26, 26, 26, 0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition-slow);
}

.category-showcase-card:hover .category-showcase-overlay {
    opacity: 1;
}

.category-showcase-overlay h3 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    animation: fadeInUp 0.6s ease;
}

.category-showcase-overlay p {
    color: white;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.category-showcase-overlay .btn {
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

/* ==================== Features Section ==================== */
.features {
    padding: 5rem 0;
    background: var(--light-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: var(--transition-slow);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-red);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-red-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--light-color);
    animation: iconFloat 3s ease-in-out infinite;
    box-shadow: var(--shadow-gold);
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.feature-card:hover .feature-icon {
    animation: iconSpin 0.6s ease;
}

@keyframes iconSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.feature-card p {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* ==================== Section Headers ==================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-red-gold);
    animation: lineExpand 2s ease-in-out infinite;
}

@keyframes lineExpand {
    0%, 100% {
        width: 80px;
    }
    50% {
        width: 120px;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-top: 1.5rem;
}

/* ==================== Collection Section ==================== */
.collection {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9f6f3 100%);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--light-color);
    border: 2px solid var(--primary-color);
    color: var(--dark-color);
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-1);
    border-radius: 50px;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: -1;
}

.filter-btn span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.filter-btn-img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
    border: 2px solid var(--primary-color);
    vertical-align: middle;
    transition: all 0.3s ease;
}

.filter-btn:hover .filter-btn-img,
.filter-btn.active .filter-btn-img {
    border-color: var(--light-color);
    transform: scale(1.1);
}

.filter-btn:hover::before,
.filter-btn.active::before {
    width: 100%;
    height: 100%;
}

.filter-btn:hover,
.filter-btn.active {
    color: #f5f5f5 !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
    border-color: var(--primary-color);
}

.filter-btn:hover span,
.filter-btn.active span {
    color: #f5f5f5 !important;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.collection-item {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    border: 2px solid transparent;
    position: relative;
}

.collection-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    box-shadow: 0 0 0 0 var(--primary-color);
    transition: var(--transition-slow);
    pointer-events: none;
}

.collection-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(196, 30, 58, 0.3);
    border-color: var(--secondary-color);
}

.collection-item:hover::after {
    box-shadow: 0 0 0 3px var(--secondary-color);
}

.collection-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.collection-item:hover .collection-image img {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-slow);
}

.collection-item:hover .collection-overlay {
    opacity: 1;
    animation: overlaySlide 0.6s ease;
}

@keyframes overlaySlide {
    from {
        clip-path: circle(0% at 50% 50%);
    }
    to {
        clip-path: circle(150% at 50% 50%);
    }
}

.btn-view {
    background: var(--light-color);
    color: var(--dark-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
}

.btn-view:hover {
    background: var(--gradient-red-gold);
    color: white !important;
    border-color: var(--primary-color);
    transform: scale(1.1);
    animation: none;
}

.collection-info {
    padding: 1.5rem;
}

.collection-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.collection-info p {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* ==================== About Section ==================== */
.services {
    padding: 5rem 0;
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-red-gold);
    transform: scaleX(0);
    transition: var(--transition-slow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-red);
    border-color: var(--secondary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-red-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--light-color);
    margin-bottom: 1.5rem;
    animation: serviceIconFloat 3s ease-in-out infinite;
    box-shadow: var(--shadow-gold);
}

@keyframes serviceIconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(5deg);
    }
}

.service-card:hover .service-icon {
    animation: serviceIconSpin 0.6s ease;
}

@keyframes serviceIconSpin {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* ==================== Gallery Section ==================== */
.gallery-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f9f6f3 0%, #ffffff 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.9) 0%, rgba(26, 26, 26, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--accent-color);
    animation: zoomPulse 1.5s ease-in-out infinite;
}

@keyframes zoomPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* ==================== Testimonials Section ==================== */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}

.testimonials .section-title,
.testimonials .section-subtitle {
    color: var(--light-color);
}

.testimonials .section-title::after {
    background: var(--gradient-2);
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: rgba(212, 175, 55, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-gold);
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-stars {
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-right: 0.3rem;
    animation: starTwinkle 2s ease-in-out infinite;
}

.testimonial-stars i:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-stars i:nth-child(3) {
    animation-delay: 0.4s;
}

.testimonial-stars i:nth-child(4) {
    animation-delay: 0.6s;
}

.testimonial-stars i:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
    box-shadow: var(--shadow-gold);
}

.testimonial-author h4 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.testimonial-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px dashed var(--secondary-color);
}

.testimonial-cta p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 10px;
    font-size: 2rem;
    justify-content: center;
    margin: 5px 0;
}

.star-rating i {
    cursor: pointer;
    color: #ddd;
    transition: all 0.3s;
}

.star-rating i:hover,
.star-rating i.fas {
    color: #ffc107;
    transform: scale(1.2);
}

.feedback-form {
    max-width: 100%;
    padding: 1.5rem;
}

.feedback-form .form-group {
    margin-bottom: 15px;
}

.feedback-form .btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 1.5rem auto 0;
    text-align: center;
}

/* Modal Header for Feedback */
.modal .modal-header {
    position: relative;
    padding: 1rem 1.5rem;
    background: var(--gradient-red-gold);
    color: white;
    text-align: center;
}

.modal .modal-header h2 {
    margin: 0;
    color: white;
    font-size: 1.6rem;
}

.modal .btn-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    line-height: 1;
}

.modal .btn-close:hover {
    transform: rotate(90deg);
    opacity: 0.8;
}

/* ==================== About Section ==================== */
.about {
    padding: 5rem 0;
    background: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--gold-light) 0%, rgba(212, 175, 55, 0.2) 100%);
    border-radius: 10px;
    border: 2px solid var(--secondary-color);
    transition: var(--transition);
    animation: statFloat 3s ease-in-out infinite;
}

.stat:nth-child(2) {
    animation-delay: 0.5s;
}

.stat:nth-child(3) {
    animation-delay: 1s;
}

@keyframes statFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.stat:hover {
    background: var(--gradient-2);
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.stat h3 {
    font-size: 2.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat p {
    color: var(--text-color);
    font-size: 0.9rem;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-description {
    padding: 1rem;
}

.about-description h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.about-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: justify;
}

.about-description p:last-child {
    margin-bottom: 0;
}

/* ==================== Quotation Section ==================== */
.quotation {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f6f3 0%, #ffffff 100%);
}

.quotation-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--light-color);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    font-size: 1.2rem;
}


/* ==================== Contact Section ==================== */
.contact {
    padding: 5rem 0;
    background: var(--light-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: rotate(45deg);
    transition: var(--transition-slow);
}

.contact-card:hover::before {
    animation: cardShine 1.5s ease;
}

@keyframes cardShine {
    0% {
        left: -50%;
        top: -50%;
    }
    100% {
        left: 150%;
        top: 150%;
    }
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-red);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-red-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--light-color);
    animation: iconBounce 2s ease-in-out infinite;
    box-shadow: var(--shadow-gold);
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.contact-card:hover .contact-icon {
    animation: iconRotate 0.6s ease;
    background: var(--gradient-1);
}

@keyframes iconRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.contact-card p {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-block;
    padding: 10px 25px;
    background: var(--gold-light);
    color: var(--dark-color);
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
}

.contact-link:hover {
    background: var(--gradient-red-gold);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ==================== Footer ==================== */
.footer {
    background: linear-gradient(180deg, var(--dark-color) 0%, #000000 100%);
    color: var(--light-color);
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--light-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-red-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    padding-left: 10px;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(196, 30, 58, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.social-links a:hover {
    background: var(--gradient-red-gold);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: var(--shadow-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* ==================== Floating Elements ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--light-color);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--light-color);
    box-shadow: var(--shadow-red);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
    border: 2px solid var(--secondary-color);
    animation: scrollTopPulse 2s ease-in-out infinite;
}

@keyframes scrollTopPulse {
    0%, 100% {
        box-shadow: var(--shadow-red), 0 0 0 0 rgba(196, 30, 58, 0.7);
    }
    50% {
        box-shadow: var(--shadow-red), 0 0 0 10px rgba(196, 30, 58, 0);
    }
}

.scroll-top.active {
    opacity: 1;
    pointer-events: all;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--gradient-2);
    animation: none;
}

/* ==================== Modal ==================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    margin: 2rem 0;
    background: var(--light-color);
    border-radius: 15px;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.modal-content img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.modal-info {
    padding: 2rem;
    text-align: center;
}

.modal-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal-info p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--light-color);
    cursor: pointer;
    z-index: 1;
    transition: var(--transition);
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--light-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
    z-index: 1;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* ==================== Animations ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* Animation on scroll */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    .nav-brand .logo {
        height: 45px !important;
        width: 45px !important;
    }

    .nav-brand h1 {
        font-size: 1.4rem;
    }

    .nav-brand .tagline {
        font-size: 0.6rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(180deg, var(--dark-color) 0%, #000000 100%);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition-slow);
        box-shadow: var(--shadow-red);
        border-top: 2px solid var(--secondary-color);
    }

    .nav-menu.active {
        left: 0;
        animation: slideInLeft 0.4s ease;
    }

    @keyframes slideInLeft {
        from {
            left: -100%;
            opacity: 0;
        }
        to {
            left: 0;
            opacity: 1;
        }
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 20px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .collection-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quotation-form {
        padding: 2rem 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .modal-content img {
        height: 300px;
    }

    .modal-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .modal-prev {
        left: 10px;
    }

    .modal-next {
        right: 10px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }

    .scroll-top {
        bottom: 90px;
        left: 20px;
        width: 45px;
        height: 45px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }

    .collection-image {
        height: 300px;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 15px;
    }

    .scroll-top {
        width: 40px;
        height: 40px;
        bottom: 80px;
        left: 15px;
    }

    .modal-content {
        width: 95%;
    }

    .modal-info {
        padding: 1.5rem;
    }

    .modal-close {
        font-size: 2rem;
        right: 15px;
        top: 15px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .navbar .container {
        padding: 0.8rem 15px;
    }

    .nav-brand h1 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* ==================== Product Details Modal ==================== */
.product-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.product-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

.product-modal-content {
    position: relative;
    max-width: 1200px;
    width: 90%;
    max-height: 90vh;
    margin: 5vh auto;
    background: var(--light-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(212, 175, 55, 0.5);
    animation: slideUp 0.4s ease;
}

.product-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    color: var(--light-color);
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: var(--gradient-2);
}

.product-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    max-height: 85vh;
    overflow-y: auto;
}

.product-modal-images {
    position: relative;
}

.product-slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-slider-main {
    width: 100%;
    height: 100%;
}

.product-slider-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-slider-btn:hover {
    background: var(--gradient-2);
    color: var(--light-color);
    transform: translateY(-50%) scale(1.1);
}

.product-slider-btn.prev {
    left: 15px;
}

.product-slider-btn.next {
    right: 15px;
}

.product-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.product-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.product-slider-dot.active {
    background: var(--gradient-1);
    width: 30px;
    border-radius: 6px;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
    padding: 10px 0;
}

.product-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
}

.product-thumbnail:hover {
    border-color: var(--secondary-color);
}

.product-thumbnail.active {
    border-color: var(--primary-color);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-modal-details {
    padding: 20px 0;
}

.product-modal-details h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.product-category-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-2);
    color: var(--dark-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}

/* Responsive Product Modal */
@media (max-width: 968px) {
    .product-modal-body {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .product-slider-container {
        height: 400px;
    }

    .product-modal-details h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .product-modal-content {
        width: 95%;
        margin: 2vh auto;
    }

    .product-modal-body {
        padding: 20px;
    }

    .product-slider-container {
        height: 300px;
    }

    .product-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .product-thumbnail {
        width: 60px;
        height: 60px;
    }

    .product-modal-details h2 {
        font-size: 1.8rem;
    }
}
