/**
 * ANUSRI DESIGNERS - Multi-Page Fashion Boutique Website
 * Main Stylesheet
 * Version: 2.0
 */

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Primary Colors */
    --primary: #8B5CF6;
    --primary-light: #A78BFA;
    --primary-dark: #7C3AED;
    --primary-gradient: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    
    /* Accent Colors */
    --gold: #D4AF37;
    --gold-light: #F4E4BC;
    --rose-gold: #B76E79;
    --accent-gradient: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
    
    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #FAF5FF;
    --bg-lavender: #F3E8FF;
    --bg-cream: #FFFBF0;
    --bg-dark: #1F2937;
    
    /* Text Colors */
    --text-dark: #1F2937;
    --text-medium: #4B5563;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;
    --text-white: #FFFFFF;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(139, 92, 246, 0.1);
    --shadow-md: 0 4px 12px rgba(139, 92, 246, 0.15);
    --shadow-lg: 0 8px 30px rgba(139, 92, 246, 0.2);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-script: 'Great Vibes', cursive;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --bg-white: #1F2937;
    --bg-light: #111827;
    --bg-lavender: #1F2937;
    --text-dark: #F9FAFB;
    --text-medium: #E5E7EB;
    --text-light: #D1D5DB;
}

/* ==================== BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================== NAVIGATION ==================== */
#mainNavbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    transition: var(--transition-normal);
    z-index: 1000;
}

#mainNavbar.navbar-scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    font-family: var(--font-heading);
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 10px 16px !important;
    position: relative;
    transition: var(--transition-normal);
    font-size: 15px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 16px;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 32px);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.btn-book {
    background: var(--primary-gradient);
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition-normal);
    border: none;
    font-size: 14px;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28139, 92, 246, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    margin-bottom: 50px;
    text-align: center;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-script);
    font-size: 26px;
    color: var(--rose-gold);
    margin-bottom: 8px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.section-description {
    font-size: 16px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 20px auto 0;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 50%, var(--bg-lavender) 100%);
    overflow: hidden;
    padding-top: 100px;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    padding: 60px 0;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
}

.hero-badge i {
    color: var(--gold);
}

.hero-title {
    margin-bottom: 15px;
}

.title-small {
    display: block;
    font-family: var(--font-script);
    font-size: 32px;
    color: var(--rose-gold);
    margin-bottom: 5px;
}

.title-main {
    display: block;
    font-size: 52px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-tagline {
    font-family: var(--font-script);
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 16px;
    color: var(--text-medium);
    max-width: 500px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary-hero {
    background: var(--primary-gradient);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-normal);
    border: none;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-outline-hero {
    background: transparent;
    color: var(--primary);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-normal);
    border: 2px solid var(--primary);
}

.btn-outline-hero:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
}

.hero-image-wrapper {
    position: relative;
    padding: 40px;
}

.hero-image-container {
    position: relative;
}

.hero-image-main {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.floating-card span {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark);
}

.card-1 {
    top: 20%;
    left: -30px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: -20px;
    animation-delay: 1.5s;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.circle-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(167, 139, 250, 0.1) 100%);
    top: -50px;
    right: -50px;
}

.circle-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 228, 188, 0.1) 100%);
    bottom: -30px;
    left: -30px;
}

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

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* ==================== PAGE BANNER ==================== */
.page-banner {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lavender) 100%);
    text-align: center;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 40%);
}

.page-banner-content {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-banner p {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 500px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb a:hover {
    color: var(--primary-dark);
}

.breadcrumb span {
    color: var(--text-light);
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image-main {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: var(--primary-gradient);
    color: white;
    padding: 25px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    z-index: 3;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 14px;
    line-height: 1.4;
}

.decorative-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: 1;
}

.about-content-col {
    padding-left: 40px;
}

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

.about-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.feature-text h5 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.feature-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.owner-signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.owner-name {
    font-family: var(--font-script);
    font-size: 28px;
    color: var(--rose-gold);
    margin-bottom: 5px;
}

.owner-title {
    font-size: 14px;
    color: var(--text-light);
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.services-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gradient);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    z-index: 2;
}

.service-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    z-index: 2;
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.service-content {
    padding: 25px;
}

.service-content h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-content p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-normal);
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.featured-service {
    border: 2px solid var(--gold);
}

/* ==================== MACHINERY SECTION ==================== */
.machinery-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.machinery-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.machinery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.machinery-image {
    height: 220px;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.machinery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.machinery-card:hover .machinery-image img {
    transform: scale(1.05);
}

.machinery-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
}

.machinery-content {
    padding: 25px;
}

.machinery-content h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.machinery-content p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.7;
}

.machinery-benefit {
    background: rgba(139, 92, 246, 0.05);
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
}

.machinery-benefit span {
    font-size: 13px;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 8px;
}

.machinery-benefit i {
    color: var(--gold);
}

/* ==================== WHY CHOOSE US SECTION ==================== */
.why-us-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.why-us-content {
    padding-right: 40px;
}

.why-us-text {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.8;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon i {
    color: white;
    font-size: 28px;
}

.why-text h5 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.why-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.why-us-image-wrapper {
    position: relative;
}

.why-us-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-us-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.quality-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: white;
    padding: 20px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
}

.quality-badge i {
    font-size: 40px;
    color: var(--gold);
}

.quality-badge span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.3;
}

/* ==================== GALLERY SECTION ==================== */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition-normal);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
}

.gallery-item {
    display: none;
}

.gallery-item.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

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

.gallery-content {
    color: white;
}

.gallery-content h5 {
    color: white;
    font-size: 20px;
    margin-bottom: 5px;
}

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

.btn-view {
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    transition: var(--transition-normal);
}

.btn-view:hover {
    background: var(--gold);
    color: white;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 5% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 95% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 25%);
    pointer-events: none;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
    position: relative;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 25px;
}

.testimonial-quote i {
    font-size: 40px;
    color: rgba(139, 92, 246, 0.1);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--gold);
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.author-info h6 {
    font-size: 16px;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.author-info p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.contact-info-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.contact-info-wrapper h4 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-text h6 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-text p {
    font-size: 14px;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.7;
}

.contact-text a {
    color: var(--primary);
    transition: var(--transition-normal);
}

.contact-text a:hover {
    color: var(--primary-dark);
}

.social-links {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.social-links h6 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    transition: var(--transition-normal);
}

.social-icon:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-3px);
}

.social-icon.whatsapp:hover {
    background: #25D366;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.contact-form-wrapper h4 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.form-group {
    position: relative;
    margin-bottom: 5px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    padding: 14px 45px 14px 15px;
    border: 2px solid rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition-normal);
    background: var(--bg-light);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
    background: white;
}

.form-icon {
    position: absolute;
    right: 15px;
    bottom: 14px;
    color: var(--text-light);
    font-size: 18px;
}

.btn-submit {
    width: 100%;
    background: var(--primary-gradient);
    color: white;
    padding: 15px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    border: none;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Map */
.map-wrapper {
    margin-top: 50px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

/* ==================== FOOTER ==================== */
.footer-section {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: white;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-brand .brand-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    font-family: var(--font-heading);
}

.footer-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #A78BFA 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-family: var(--font-script);
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px);
}

.footer-links h5,
.footer-services h5,
.footer-contact h5 {
    font-size: 18px;
    color: white;
    margin-bottom: 25px;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-services li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition-normal);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--gold);
    font-size: 16px;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.copyright,
.credits {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.credits i {
    color: var(--rose-gold);
}

/* ==================== FLOATING WHATSAPP BUTTON ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
}

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

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #1F2937;
    color: white;
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ==================== BACK TO TOP BUTTON ==================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

/* ==================== MODAL STYLES ==================== */
.modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.modal-header {
    border: none;
    padding: 15px 20px;
}

.modal-body {
    padding: 0;
}

.modal-body img {
    width: 100%;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* Appointment Modal */
#appointmentModal .modal-content {
    border: none;
    border-radius: var(--radius-lg);
}

#appointmentModal .modal-header {
    background: var(--primary-gradient);
    color: white;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

#appointmentModal .modal-title {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#appointmentModal .btn-close {
    filter: invert(1);
}

#appointmentModal .modal-body {
    padding: 30px;
}

#appointmentModal .form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

#appointmentModal .form-control,
#appointmentModal .form-select {
    padding: 12px 15px;
    border: 2px solid rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-sm);
}

#appointmentModal .form-control:focus,
#appointmentModal .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

#appointmentModal .btn-primary {
    background: var(--primary-gradient);
    border: none;
    padding: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
}

/* ==================== NOTIFICATION ==================== */
.custom-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    animation: slideInRight 0.3s ease;
    max-width: 400px;
}

.notification-success {
    background: #10B981;
    color: white;
}

.notification-error {
    background: #EF4444;
    color: white;
}

.notification-info {
    background: var(--primary);
    color: white;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 1199px) {
    .title-main {
        font-size: 44px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 991px) {
    .hero-content {
        text-align: center;
        padding: 40px 0;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        padding: 20px;
    }
    
    .about-content-col {
        padding-left: 15px;
        margin-top: 40px;
    }
    
    .about-experience-badge {
        right: 20px;
    }
    
    .why-us-content {
        padding-right: 15px;
        margin-bottom: 40px;
    }
    
    .quality-badge {
        left: 20px;
    }
    
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: var(--radius-md);
        margin-top: 15px;
        box-shadow: var(--shadow-md);
    }
    
    .btn-book {
        margin-top: 15px;
        margin-left: 0 !important;
    }
    
    .page-banner h1 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .title-small {
        font-size: 24px;
    }
    
    .title-main {
        font-size: 36px;
    }
    
    .hero-tagline {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .section-subtitle {
        font-size: 20px;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .about-experience-badge {
        padding: 15px 20px;
    }
    
    .exp-number {
        font-size: 32px;
    }
    
    .quality-badge {
        padding: 15px 20px;
    }
    
    .quality-badge i {
        font-size: 30px;
    }
    
    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .footer-top {
        padding: 60px 0 30px;
    }
    
    .footer-links,
    .footer-services,
    .footer-contact {
        margin-top: 30px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .page-banner {
        padding: 120px 0 60px;
    }
    
    .page-banner h1 {
        font-size: 28px;
    }
    
    .gallery-card img {
        height: 220px;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding-top: 80px;
    }
    
    .btn-primary-hero,
    .btn-outline-hero {
        width: 100%;
        justify-content: center;
    }
    
    .gallery-filter {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .map-wrapper {
        margin-top: 30px;
    }
    
    .map-wrapper iframe {
        height: 250px;
    }
    
    .machinery-image {
        height: 180px;
    }
}

/* ==================== SCROLL ANIMATIONS ==================== */
[data-aos] {
    pointer-events: auto;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection color */
::selection {
    background: rgba(139, 92, 246, 0.3);
    color: var(--text-dark);
}

/* Lazy loading placeholder */
.lazy-image {
    background: var(--bg-light);
    min-height: 200px;
}

/* Loading animation */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.loading-shimmer {
    background: linear-gradient(90deg, var(--bg-light) 25%, #e8e8e8 50%, var(--bg-light) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}


/* ==================== PRODUCTS SECTION ==================== */
.products-section {
    padding: 60px 0;
    background: var(--bg-white);
}

/* Filters Sidebar */
.filters-sidebar {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 25px;
    position: sticky;
    top: 100px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.filter-header h5 {
    font-size: 18px;
    margin: 0;
    color: var(--text-dark);
}

.filter-header button {
    color: var(--primary) !important;
    font-size: 13px;
    font-weight: 500;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group h6 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    font-size: 14px;
    color: var(--text-medium);
    transition: var(--transition-normal);
}

.filter-checkbox:hover {
    color: var(--primary);
}

.filter-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 4px;
    transition: var(--transition-normal);
}

.filter-checkbox input:checked ~ .checkmark {
    background: var(--primary-gradient);
    border-color: var(--primary);
}

.checkmark::after {
    content: '';
    position: absolute;
    display: none;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-checkbox input:checked ~ .checkmark::after {
    display: block;
}

/* Price Range */
.price-range {
    padding: 10px 0;
}

.price-slider-container {
    margin-bottom: 15px;
}

.price-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(139, 92, 246, 0.1);
    outline: none;
    -webkit-appearance: none;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-gradient);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.price-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-gradient);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 8px;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-inputs .input-group {
    flex: 1;
}

.price-inputs .input-group-text {
    background: white;
    border: 2px solid rgba(139, 92, 246, 0.1);
    border-right: none;
    color: var(--text-medium);
    font-size: 13px;
}

.price-inputs .form-control {
    border: 2px solid rgba(139, 92, 246, 0.1);
    border-left: none;
    padding: 10px;
    font-size: 13px;
}

.price-separator {
    color: var(--text-light);
    font-weight: 500;
}

/* Products Header */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.products-count {
    font-size: 14px;
    color: var(--text-medium);
}

.products-count span {
    font-weight: 600;
    color: var(--primary);
}

.products-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.products-sort label {
    font-size: 14px;
    color: var(--text-medium);
    margin: 0;
}

.products-sort .form-select {
    width: auto;
    min-width: 150px;
    border: 2px solid rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-sm);
    font-size: 14px;
    padding: 8px 35px 8px 12px;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 92, 246, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view-product {
    background: white;
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-normal);
}

.btn-view-product:hover {
    background: var(--gold);
    color: white;
}

.product-content {
    padding: 20px;
}

.product-category {
    display: inline-block;
    font-size: 12px;
    color: var(--primary);
    background: rgba(139, 92, 246, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.original-price {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.offer-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-view-details {
    flex: 1;
    background: var(--primary-gradient);
    color: white;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-normal);
    border: none;
}

.btn-view-details:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-whatsapp-share {
    width: 42px;
    height: 42px;
    background: #25D366;
    color: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition-normal);
    border: none;
}

.btn-whatsapp-share:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Product Details Page */
.product-details-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.product-detail-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.product-detail-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.product-badge-large {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
}

.product-detail-info {
    padding: 20px 0 20px 30px;
}

.product-detail-category {
    display: inline-block;
    font-size: 14px;
    color: var(--primary);
    background: rgba(139, 92, 246, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.product-detail-name {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.product-detail-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.original-price-large {
    font-size: 20px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.offer-price-large {
    font-size: 36px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.discount-badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

.product-detail-description {
    margin-bottom: 25px;
}

.product-detail-description h5 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.product-detail-description p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.8;
}

.product-detail-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    min-width: 100px;
}

.meta-value {
    font-size: 14px;
    color: var(--text-medium);
}

.meta-value.in-stock {
    color: #10B981;
}

.meta-value.out-of-stock {
    color: #EF4444;
}

.product-detail-sizes {
    margin-bottom: 25px;
}

.product-detail-sizes h5 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.sizes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-option {
    min-width: 50px;
    padding: 10px 16px;
    background: white;
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    transition: var(--transition-normal);
}

.size-option:hover {
    border-color: var(--primary);
    background: rgba(139, 92, 246, 0.05);
}

.product-detail-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-whatsapp-order {
    flex: 1;
    background: #25D366;
    color: white;
    padding: 16px 30px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-normal);
    border: none;
}

.btn-whatsapp-order:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-whatsapp-share-large {
    padding: 16px 24px;
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-normal);
}

.btn-whatsapp-share-large:hover {
    border-color: var(--primary);
    background: rgba(139, 92, 246, 0.05);
    color: var(--primary);
}

.product-detail-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
}

.product-detail-note i {
    color: var(--gold);
    font-size: 18px;
}

.product-detail-note span {
    font-size: 14px;
    color: var(--text-medium);
}

/* Related Products */
.related-products-section {
    padding: 60px 0;
}

/* Mobile Responsive for Products */
@media (max-width: 991px) {
    .filters-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }
    
    .products-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .products-sort {
        width: 100%;
    }
    
    .products-sort .form-select {
        flex: 1;
    }
    
    .product-detail-info {
        padding: 30px 0 0 0;
    }
    
    .product-detail-image img {
        height: 350px;
    }
    
    .product-detail-name {
        font-size: 24px;
    }
    
    .offer-price-large {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .product-image {
        height: 200px;
    }
    
    .product-name {
        font-size: 16px;
    }
    
    .offer-price {
        font-size: 18px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn-whatsapp-share {
        width: 100%;
    }
    
    .product-detail-actions {
        flex-direction: column;
    }
    
    .price-inputs {
        flex-direction: column;
    }
    
    .price-separator {
        display: none;
    }
}


/* ==================== PRODUCT GALLERY STYLES ==================== */
.product-gallery {
    display: flex;
    gap: 20px;
    margin-top: 55px;
}

.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 80px;
    flex-shrink: 0;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

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

.gallery-main {
    flex: 1;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-light);
}

.zoom-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.zoom-lens {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--primary);
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    cursor: crosshair;
    display: none;
    pointer-events: none;
}

.zoom-result {
    position: absolute;
    top: 0;
    right: -420px;
    width: 400px;
    height: 400px;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    background-repeat: no-repeat;
    display: none;
    z-index: 100;
    box-shadow: var(--shadow-lg);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
}

.nav-btn {
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition-normal);
    pointer-events: auto;
}

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

.swipe-hint {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Product Detail Info */
.product-detail-row {
    align-items: flex-start;
}

.product-detail-info {
    padding: 0 0 0 20px;
}

.product-short-desc {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.product-detail-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.original-price-large {
    font-size: 20px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.offer-price-large {
    font-size: 36px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-detail-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    min-width: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-label i {
    color: var(--primary);
}

.meta-value {
    font-size: 14px;
    color: var(--text-medium);
}

.meta-value.in-stock {
    color: #10B981;
    font-weight: 500;
}

.meta-value.out-of-stock {
    color: #EF4444;
}

/* Sizes */
.product-detail-sizes {
    margin-bottom: 25px;
}

.product-detail-sizes h5 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.sizes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-option {
    min-width: 50px;
    padding: 12px 18px;
    background: white;
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.size-option:hover,
.size-option.selected {
    border-color: var(--primary);
    background: var(--primary-gradient);
    color: white;
}

/* Actions */
.product-detail-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.btn-whatsapp-order {
    flex: 1;
    background: #25D366;
    color: white;
    padding: 16px 30px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-normal);
    border: none;
}

.btn-whatsapp-order:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-wishlist-large {
    width: 56px;
    height: 56px;
    background: var(--bg-light);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.btn-wishlist-large:hover,
.btn-wishlist-large.active {
    border-color: #EF4444;
    background: #FEE2E2;
    color: #EF4444;
}

/* Social Share */
.product-share {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.product-share h6 {
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    border: none;
    transition: var(--transition-normal);
    cursor: pointer;
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

.share-btn.facebook {
    background: #1877F2;
}

.share-btn.facebook:hover {
    background: #166fe5;
    transform: translateY(-3px);
}

.share-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.share-btn.instagram:hover {
    transform: translateY(-3px);
}

.share-btn.copy {
    background: var(--text-medium);
}

.share-btn.copy:hover {
    background: var(--text-dark);
    transform: translateY(-3px);
}

/* Wishlist Button on Product Card */
.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-muted);
    box-shadow: var(--shadow-sm);
    z-index: 3;
    transition: var(--transition-normal);
    cursor: pointer;
}

.wishlist-btn:hover,
.wishlist-btn.active {
    background: #FEE2E2;
    color: #EF4444;
}

/* Related Products */
.related-card {
    height: 100%;
}

.related-card .product-image {
    height: 200px;
}

/* Sticky Mobile Bar */
.sticky-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: flex;
    justify-content: center;
}

.btn-whatsapp-sticky {
    width: 100%;
    max-width: 400px;
    background: #25D366;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-normal);
}

.btn-whatsapp-sticky:hover {
    background: #128C7E;
    color: white;
}

/* Logo Styles */
.brand-logo-img {
    height: 60px;
    width: auto;
    margin-right: 10px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

/* Mobile Responsive for Product Gallery */
@media (max-width: 991px) {
    .product-gallery {
        flex-direction: column-reverse;
    }
    
    .gallery-thumbs {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }
    
    .gallery-thumb {
        width: 60px;
        height: 60px;
    }
    
    .zoom-container {
        height: 350px;
    }
    
    .zoom-result {
        display: none !important;
    }
    
    .product-detail-info {
        padding: 30px 0 0 0;
    }
    
    .product-detail-name {
        font-size: 24px;
    }
    
    .offer-price-large {
        font-size: 28px;
    }
    
    .product-detail-actions {
        flex-direction: column;
    }
    
    .btn-wishlist-large {
        width: 100%;
        height: 50px;
    }
}

@media (max-width: 575px) {
    .gallery-thumb {
        width: 50px;
        height: 50px;
    }
    
    .zoom-container {
        height: 280px;
    }
    
    .nav-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .share-buttons {
        justify-content: center;
    }
}


/* ==================== HERO SLIDER STYLES ==================== */
.hero-slider-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.heroSwiper {
    height: 100%;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 50px;
    color: white;
}

.slide-subtitle {
    display: inline-block;
    font-family: var(--font-script);
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 15px;
}

.slide-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.slide-title .highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-desc {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline-light {
    background: transparent;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-normal);
    border: 2px solid white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--text-dark);
}

/* Hero Navigation */
.hero-next,
.hero-prev {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
    transition: var(--transition-normal);
}

.hero-next:hover,
.hero-prev:hover {
    background: var(--primary);
}

.hero-next::after,
.hero-prev::after {
    font-size: 20px;
}

.hero-pagination {
    bottom: 30px !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
}

/* ==================== CATEGORY CARDS ==================== */
.categories-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.category-card {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.category-small .category-image {
    height: 220px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.category-content {
    color: white;
}

.category-content i {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.category-content h4 {
    font-size: 22px;
    margin-bottom: 5px;
    color: white;
}

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

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-normal);
}

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

/* ==================== OFFERS SECTION ==================== */
.offers-section {
    padding: 80px 0;
}

.offer-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition-normal);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
}

.offer-image {
    height: 180px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-content {
    padding: 20px;
}

.offer-content h5 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.offer-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.offer-price .original {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.offer-price .offer {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.offers-pagination {
    position: relative;
    margin-top: 25px;
}

.offers-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(139, 92, 246, 0.3);
    opacity: 1;
}

.offers-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
}

/* ==================== WHY CHOOSE US ==================== */
.why-choose-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.feature-box {
    text-align: center;
    padding: 40px 25px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: white;
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon-box i {
    font-size: 36px;
    color: white;
}

.feature-box h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-box p {
    font-size: 14px;
    color: var(--text-medium);
    margin: 0;
}

/* ==================== INSTAGRAM GALLERY ==================== */
.instagram-section {
    padding: 80px 0;
    background: var(--bg-white);
    overflow: hidden;
}

.instagram-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.instagram-scroll::-webkit-scrollbar {
    display: none;
}

.instagram-track {
    display: flex;
    gap: 15px;
    padding: 10px 0;
}

.insta-item {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.insta-overlay i {
    font-size: 32px;
    color: white;
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-normal);
    border: none;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
    color: white;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    position: relative;
}

.text-white-50 {
    color: rgba(255,255,255,0.7) !important;
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 1199px) {
    .slide-title {
        font-size: 44px;
    }
}

@media (max-width: 991px) {
    .hero-slider-section {
        height: auto;
        min-height: 500px;
    }
    
    .hero-slide {
        min-height: 500px;
        padding: 100px 0;
    }
    
    .hero-slide-content {
        padding: 0 30px;
        max-width: 100%;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .slide-desc {
        font-size: 16px;
    }
    
    .category-image {
        height: 250px;
    }
    
    .category-small .category-image {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .slide-title {
        font-size: 28px;
    }
    
    .slide-subtitle {
        font-size: 22px;
    }
    
    .slide-buttons {
        flex-direction: column;
    }
    
    .btn-primary-hero,
    .btn-outline-light {
        width: 100%;
        justify-content: center;
    }
    
    .hero-next,
    .hero-prev {
        display: none;
    }
    
    .insta-item {
        width: 150px;
        height: 150px;
    }
    
    .feature-box {
        padding: 30px 20px;
    }
}
