/* ===================================
   SILKYCARE - PROFESSIONAL DESIGN
   Primary Color: #072774
   Large Logos & Bold Typography
   =================================== */

:root {
    --primary: #072774;
    --primary-dark: #051b54;
    --primary-light: #0a3498;
    --white: #ffffff;
    --light-bg: #f8f9fc;
    --text-dark: #222;
    --text-gray: #666;
    --shadow: 0 10px 40px rgba(7, 39, 116, 0.15);
    --shadow-lg: 0 20px 60px rgba(7, 39, 116, 0.25);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* ========== PRELOADER REMOVED ========== */
/* Preloader styles have been removed */

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

@keyframes glow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

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

/* ========== HEADER - LARGE LOGO ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 8px 10px; /* قەبارەی هێدەر */
    justify-content: space-between;
    gap: 20px;
    will-change: transform, box-shadow;
    transform: translateZ(0);
}


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

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
}

.logo img {
    height: 80px !important;
    width: auto;
    align-items: center;
    transition: all 0.3s ease;
}

.header.scrolled .logo img {
    height: 100px !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 10000;
    position: relative;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.mobile-toggle span {
    width: 32px;
    height: 4px;
    background: var(--primary);
    transition: all 0.3s ease;
    border-radius: 3px;
    display: block;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: heroSlideshow 20s infinite;
    transform: scale(1.1);
}

.hero-slide-1 {
    background-image: url('../products/hero section image.JPG');
    animation-delay: 0s;
}

.hero-slide-2 {
    background-image: url('../products/hero section image2.JPG');
    animation-delay: 5s;
}

.hero-slide-3 {
    background-image: url('../products/hero section image 3.JPG');
    animation-delay: 10s;
}

.hero-slide-4 {
    background-image: url('../products/1l_product.JPG');
    animation-delay: 15s;
}

@keyframes heroSlideshow {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    5% {
        opacity: 1;
    }
    20% {
        opacity: 1;
    }
    25% {
        opacity: 0;
        transform: scale(1.05);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.hero-slideshow::after {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-slideshow::after {
        background: transparent;
    }
}

/* ========== SILKY CIRCULAR TEXT MARQUEE ========== */
.circular-marquee-section {
    position: relative;
    overflow: hidden;
}

.circular-marquee {
    position: relative;
}

.circular-marquee svg text {
    font-family: 'Montserrat', sans-serif;
}

.circular-marquee-container {
    position: relative;
}

@media (max-width: 992px) {
    .circular-marquee-container {
        padding-left: 20px !important;
    }
}

@media (max-width: 768px) {
    .circular-marquee {
        width: 350px !important;
        height: 350px !important;
    }
    
    .circular-marquee-container {
        padding-left: 10px !important;
        right: -50px !important;
        top: -50px !important;
        left: auto !important;
        width: 350px !important;
        height: 350px !important;
    }
    
    .circular-marquee svg {
        viewBox: 0 0 350 350;
    }
    
    .circular-marquee svg text {
        font-size: 20px !important;
        letter-spacing: 8px !important;
    }
    
    .circular-marquee svg path {
        d: path("M 175,175 m -150,0 a 150,150 0 1,1 300,0 a 150,150 0 1,1 -300,0");
    }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-image {
    position: relative;
    z-index: 2;
}

/* ========== PAGE HERO (About, Contact, Services) ========== */
.page-hero {
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../products/hero section image.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.85;
    z-index: 0;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 0;
}

.page-hero .container,
.page-hero > div {
    position: relative;
    z-index: 2;
}

.page-hero h1,
.page-hero p,
.page-hero * {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .page-hero::before {
        opacity: 0.8;
    }
    
    .page-hero::after {
        background: transparent;
    }
}

.hero-text {
    animation: fadeInLeft 1s ease 0.3s both;
    position: relative;
    z-index: 2;
    background: rgba(7, 39, 116, 0.6);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    color: var(--white);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--white);
    background-clip: unset;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
    position: relative;
    z-index: 2;
}

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

.hero .btn-primary {
    position: relative;
    z-index: 2;
    background: var(--white);
    color: var(--primary);
}

.hero .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.hero-image {
    animation: fadeInRight 1s ease 0.5s both;
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05) rotate(2deg);
}

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

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

/* ========== SECTIONS ========== */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-description {
    font-size: 19px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========== FOOTER - LARGE LOGO ========== */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 40px;
    width: 100%;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: center;
}

.footer-logo {
    height: 200px !important;
    width: auto;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.footer-section h3,
.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-section p,
.footer-col p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 25px;
}

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

.footer-section ul li,
.footer-col ul li {
    margin-bottom: 15px;
}

.footer-section ul li a,
.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    opacity: 0.85;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover,
.footer-col ul li a:hover {
    opacity: 1;
    padding-left: 10px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact li i {
    margin-top: 3px;
    font-size: 16px;
    opacity: 0.85;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: transparent;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 22px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.3);
}

.social-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border-color: transparent;
}

/* Facebook */
.social-links a[href*="facebook"]:hover {
    background: linear-gradient(135deg, #1877f2 0%, #0d5bbd 100%);
    color: var(--white);
}

/* Instagram */
.social-links a[href*="instagram"]:hover {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

/* Twitter/X */
.social-links a[href*="twitter"]:hover,
.social-links a[href*="x.com"]:hover {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    color: var(--white);
}

/* LinkedIn */
.social-links a[href*="linkedin"]:hover {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    color: var(--white);
}

/* YouTube */
.social-links a[href*="youtube"]:hover {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: var(--white);
}

/* TikTok */
.social-links a[href*="tiktok"]:hover {
    background: linear-gradient(135deg, #000000 0%, #25f4ee 50%, #fe2c55 100%);
    color: var(--white);
}

/* WhatsApp */
.social-links a[href*="whatsapp"]:hover {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
}

/* Telegram */
.social-links a[href*="telegram"]:hover,
.social-links a[href*="t.me"]:hover {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: var(--white);
}

/* Snapchat */
.social-links a[href*="snapchat"]:hover {
    background: linear-gradient(135deg, #fffc00 0%, #f7d800 100%);
    color: #000;
}

/* Pinterest */
.social-links a[href*="pinterest"]:hover {
    background: linear-gradient(135deg, #e60023 0%, #ad081b 100%);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 15px;
    opacity: 0.85;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.footer-bottom p {
    margin: 0;
    flex: 1;
}

.footer-flags {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.footer-flags img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    
    .footer-bottom p {
        flex: none;
    }
}

/* Footer Inline Links */
.footer-links-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.footer-links-inline a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.footer-links-inline a:hover {
    opacity: 1;
}

.footer-links-inline span {
    color: var(--white);
    opacity: 0.5;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow);
}

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

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* ========== RESPONSIVE - OPTIMIZED FOR MOBILE ========== */

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
    .product-card:hover {
        transform: none;
    }
    
    .product-card:hover .product-image img {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    .feature-box:hover {
        transform: none;
    }
    
    .brush-card:hover {
        transform: none;
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .logo img {
        height: 70px !important;
    }
    
    .hero-title {
        font-size: 48px;
        color: var(--white);
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .hero-text {
        padding: 30px;
    }
    
    section {
        padding: 80px 0;
    }
}

/* Mobile Landscape & Small Tablets - 768px */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 8px 0;
    }
    
    .nav-wrapper {
        padding: 5px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 20px 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        gap: 10px;
        z-index: 9999;
        height: calc(100vh - 60px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 15px 10px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(7, 39, 116, 0.1);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .mobile-toggle {
        display: flex !important;
    }
    
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-text {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        color: var(--white);
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 25px;
        color: var(--white);
        line-height: 1.6;
    }
    
    .hero-badge {
        padding: 8px 20px;
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 25px;
    }
    
    .hero-image {
        display: none;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .section-description {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .footer-logo {
        height: 120px !important;
        margin-bottom: 20px;
    }
    
    .footer-section,
    .footer-col {
        text-align: center;
    }
    
    .footer-col p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .footer-links-inline {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .footer-links-inline a {
        font-size: 14px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-links a {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    /* Preloader removed */
    
    .loader-spinner {
        width: 25px;
        height: 25px;
        margin-top: 12px;
    }
    
    .logo img {
        height: 45px !important;
    }
    
    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 15px;
        font-size: 18px;
    }
    
    /* About section mobile */
    .about-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .about-text p {
        font-size: 15px !important;
        line-height: 1.7 !important;
        margin-bottom: 15px !important;
    }
    
    .about-image img {
        border-radius: 15px !important;
    }
    
    /* Circular marquee mobile */
    .circular-marquee-container {
        display: none !important;
    }
    
    /* Fullwidth slideshow mobile */
    .slideshow-container {
        height: 250px !important;
    }
    
    /* Products marquee mobile */
    .products-marquee-section {
        padding: 40px 0 !important;
    }
    
    .marquee-track img {
        height: 120px !important;
        border-radius: 10px !important;
    }
    
    /* Why choose section mobile */
    .why-choose {
        padding: 60px 0 !important;
    }
    
    .why-choose .section-header h2 {
        font-size: 32px !important;
    }
    
    .why-choose .section-header p {
        font-size: 16px !important;
    }
    
    /* Brushes/Product cards mobile */
    .brushes-section {
        padding: 60px 0 !important;
    }
    
    .brushes-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .brush-card {
        border-radius: 15px !important;
    }
    
    .brush-image {
        height: 200px !important;
    }
    
    .brush-card > div:last-child {
        padding: 20px !important;
    }
    
    .brush-card h3 {
        font-size: 18px !important;
    }
    
    .brush-card p {
        font-size: 14px !important;
        margin-bottom: 15px !important;
    }
    
    .brush-card .btn {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }
    
    /* Banner section mobile */
    .banner-section img {
        min-height: 150px;
        object-fit: cover;
    }
}

/* Mobile Portrait - 480px */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .logo img {
        height: 38px !important;
    }
    
    .header {
        padding: 6px 0;
    }
    
    .nav-menu {
        top: 55px;
        height: calc(100vh - 55px);
    }
    
    .hero {
        padding: 70px 0 30px;
    }
    
    .hero-text {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .hero-title {
        font-size: 26px;
        color: var(--white);
    }
    
    .hero-description {
        font-size: 14px;
        color: var(--white);
        margin-bottom: 20px;
    }
    
    .hero-badge {
        padding: 6px 15px;
        font-size: 11px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
        gap: 8px;
    }
    
    /* Preloader removed */
    
    .loader-spinner {
        width: 22px;
        height: 22px;
        margin-top: 10px;
    }
    
    /* Slideshow mobile small */
    .slideshow-container {
        height: 180px !important;
    }
    
    /* Marquee mobile small */
    .marquee-track img {
        height: 100px !important;
    }
    
    .products-marquee-section {
        padding: 30px 0 !important;
    }
    
    /* Why choose cards mobile */
    .why-choose > .container > div:nth-child(2) {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .why-choose > .container > div:nth-child(2) > div {
        padding: 25px 20px !important;
        border-radius: 15px !important;
    }
    
    .why-choose > .container > div:nth-child(2) > div h3 {
        font-size: 18px !important;
    }
    
    .why-choose > .container > div:nth-child(2) > div p {
        font-size: 14px !important;
    }
    
    .why-choose > .container > div:nth-child(2) > div > div:first-child {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 15px !important;
    }
    
    .why-choose > .container > div:nth-child(2) > div > div:first-child i {
        font-size: 22px !important;
    }
    
    /* Footer mobile small */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo {
        height: 100px !important;
    }
    
    .footer-col p {
        font-size: 13px;
    }
    
    .footer-bottom {
        padding-top: 20px;
        font-size: 12px;
    }
    
    .footer-flags img {
        height: 25px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 15px;
        right: 12px;
    }
    
    /* Brushes mobile small */
    .brush-image {
        height: 180px !important;
    }
    
    .brush-card > div:last-child {
        padding: 15px !important;
    }
    
    .brush-card h3 {
        font-size: 16px !important;
        margin-bottom: 10px !important;
    }
    
    .brush-card p {
        font-size: 13px !important;
        margin-bottom: 12px !important;
    }
}

/* Extra small devices - 360px */
@media (max-width: 360px) {
    .hero-title {
        font-size: 22px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .logo img {
        height: 35px !important;
    }
}

/* ========== PRODUCT MODAL/POPUP ========== */
.product-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.product-modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 30px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
    margin: 20px;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
    .modal-content {
        max-height: 95vh;
        border-radius: 20px;
        margin: 10px;
    }
}

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

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

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary-dark);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px;
}

@media (max-width: 992px) {
    .modal-body {
        gap: 40px;
        padding: 50px 40px;
    }
}

.modal-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

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

.modal-details h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.modal-details .product-category {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}


.modal-details .modal-description {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.modal-features {
    margin-bottom: 30px;
}

.modal-features h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.modal-features ul {
    list-style: none;
    padding: 0;
}

.modal-features ul li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
    font-size: 16px;
    color: var(--text-gray);
}

.modal-features ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 18px;
}

.modal-actions {
    display: flex;
    gap: 15px;
}

.modal-actions .btn {
    flex: 1;
}

@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 25px;
    }
    
    .modal-image {
        height: 300px;
    }
    
    .modal-details h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .modal-details .product-category {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 15px;
    }
    
    .modal-details .modal-description {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .modal-features h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .modal-features ul li {
        font-size: 14px;
        padding: 8px 0;
        padding-left: 30px;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .modal-body {
        padding: 30px 20px;
        gap: 25px;
    }
    
    .modal-image {
        height: 250px;
    }
    
    .modal-details h2 {
        font-size: 22px;
    }
    
    .modal-details .modal-description {
        font-size: 14px;
    }
}
