/* DrSupply - Complete CSS (No External Dependencies) */
/* Tailwind classes converted to pure CSS */

/* ======================================
   CSS RESET & BASE
====================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
    margin: 0;
    padding: 0;
}

main {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
button,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* ======================================
   UTILITY CLASSES (Tailwind Equivalents)
====================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 16px;
    padding-right: 16px;
}

.py-4 {
    padding-top: 16px;
    padding-bottom: 16px;
}

.py-6 {
    padding-top: 24px;
    padding-bottom: 24px;
}

.py-8 {
    padding-top: 32px;
    padding-bottom: 32px;
}

.py-12 {
    padding-top: 48px;
    padding-bottom: 48px;
}

.p-4 {
    padding: 16px;
}

.mt-20 {
    margin-top: 80px;
}

/* Navigation Menu Background - User requested Gray */
@media (min-width: 768px) {

    .site-header .elementor-section-wrap>section:nth-child(2),
    .mega-menu-wrap,
    #mega-menu-wrap-primary,
    .elementor-location-header,
    nav.main-navigation,
    .nav-bar,
    .nav-bar .nav-inner {
        background-color: #F1F1F1 !important;
        /* Exact Light Gray */
    }
}

.ml-auto {
    margin-left: auto;
}

.mr-2 {
    margin-right: 8px;
}

.gap-2 {
    gap: 8px;
}

.gap-3 {
    gap: 12px;
}

.gap-4 {
    gap: 16px;
}

.gap-8 {
    gap: 32px;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.h-5 {
    height: 20px;
}

.w-5 {
    width: 20px;
}

.h-16 {
    height: 64px;
}

.flex {
    display: flex;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.inline {
    display: inline;
}

.inline-block {
    display: inline-block;
}

.inline-flex {
    display: inline-flex;
}

.grid {
    display: grid;
}

.flex-1 {
    flex: 1;
}

.flex-col {
    flex-direction: column;
}

.flex-grow {
    flex-grow: 1;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.inset-x-0 {
    left: 0;
    right: 0;
}

.z-40 {
    z-index: 40;
}

.z-50 {
    z-index: 50;
}

.z-99 {
    z-index: 99;
}

.z-100 {
    z-index: 100;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-y-auto {
    overflow-y: auto;
}

.rounded {
    border-radius: 4px;
}

.rounded-md {
    border-radius: 6px;
}

.rounded-lg {
    border-radius: 8px;
}

.rounded-full {
    border-radius: 9999px;
}

.border {
    border: 1px solid #e5e7eb;
}

.border-b {
    border-bottom: 1px solid #e5e7eb;
}

.border-t {
    border-top: 1px solid #e5e7eb;
}

.border-gray-100 {
    border-color: #f3f4f6;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.border-gray-300 {
    border-color: #d1d5db;
}

.bg-white {
    background-color: #fff;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

.bg-gray-200 {
    background-color: #e5e7eb;
}

.bg-black {
    background-color: #000;
}

.text-white {
    color: #fff;
}

.text-black {
    color: #000;
}

.text-gray-300 {
    color: #d1d5db;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-800 {
    color: #1f2937;
}

.text-gray-900 {
    color: #111827;
}

.text-xs {
    font-size: 12px;
}

.text-sm {
    font-size: 14px;
}

.text-base {
    font-size: 16px;
}

.text-lg {
    font-size: 18px;
}

.text-xl {
    font-size: 20px;
}

.text-2xl {
    font-size: 24px;
}

.text-3xl {
    font-size: 30px;
}

.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.leading-tight {
    line-height: 1.25;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.transition-all {
    transition: all 0.3s ease;
}

.transition-colors {
    transition: color 0.2s ease;
}

.transition-opacity {
    transition: opacity 0.3s ease;
}

.opacity-0 {
    opacity: 0;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-100 {
    opacity: 1;
}

.transform {
    transform: translateZ(0);
}

.translate-x-1\/2 {
    transform: translateX(-50%);
}

.translate-y-1\/2 {
    transform: translateY(-50%);
}

.cursor-pointer {
    cursor: pointer;
}

.select-none {
    user-select: none;
}

/* Responsive hidden classes */
@media (min-width: 640px) {
    .sm\:hidden {
        display: none;
    }

    .sm\:block {
        display: block;
    }

    .sm\:flex {
        display: flex;
    }

    .sm\:inline {
        display: inline;
    }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .lg\:flex {
        display: flex;
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .lg\:ml-6 {
        margin-left: 24px;
    }

    .lg\:mr-8 {
        margin-right: 32px;
    }
}

/* ======================================
   HEADER STYLES
====================================== */
.header-bar {
    width: 100%;
    height: 75.59px;
    position: relative;
    z-index: 99;
    background-color: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 16px;
    position: relative;
}

.header-logo {
    margin-left: 0;
}

.header-logo img {
    height: 75px;
    width: 75px;
    object-fit: contain;
}

@media (min-width: 1024px) {
    .header-logo {
        margin-left: 56px;
        /* 1.5cm */
    }
}

/* Mobile Menu & Search Buttons */
.mobile-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    left: 96px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
}

.mobile-btn {
    padding: 8px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-btn svg {
    width: 20px;
    height: 20px;
    color: #5e37aa;
    stroke: #5e37aa;
}

@media (min-width: 640px) {
    .mobile-buttons {
        display: none;
    }
}

/* Search Bar */
.search-wrapper {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 450px;
    padding: 0 8px;
    z-index: 40;
}

@media (min-width: 640px) {
    .search-wrapper {
        display: block;
    }
}

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-input {
    flex: 1;
    padding: 0 16px;
    height: 38px;
    border: 0.5px solid #000;
    border-radius: 6px;
    background: #fff;
    outline: none;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.search-btn {
    width: 44px;
    height: 34px;
    background: #0274BE;
    color: #fff;
    border: 1px solid #0274BE;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-btn:hover {
    opacity: 0.95;
}

.search-btn svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
}

/* Header Actions (Login & Cart) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    margin-right: 8px;
    z-index: 50;
}

@media (min-width: 1024px) {
    .header-actions {
        margin-right: 75px;
        /* 2cm */
    }
}

.header-actions a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.login-link {
    font-weight: 700;
    display: none;
}

@media (min-width: 640px) {
    .login-link {
        display: inline;
    }
}

.cart-link svg {
    width: 20px;
    height: 20px;
    fill: #5e37aa;
}

.cart-link span {
    font-weight: 400;
    color: #5e37aa;
}

/* ======================================
   MOBILE MENU OVERLAY
====================================== */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    background: #fff;
    width: 288px;
    height: 100%;
    overflow-y: auto;
}

.mobile-menu-header {
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-header span {
    font-weight: 700;
    font-size: 18px;
}

.mobile-menu-close {
    padding: 8px;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
}

.mobile-menu nav {
    padding: 16px;
}

.mobile-menu nav a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
    transition: color 0.2s;
}

.mobile-menu nav a:hover {
    color: #64dee8;
}

/* ======================================
   MOBILE SEARCH OVERLAY
====================================== */
.mobile-search {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 100;
    padding: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-search.active {
    display: block;
}

.mobile-search-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-search-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    outline: none;
}

.mobile-search-input:focus {
    box-shadow: 0 0 0 2px rgba(94, 55, 170, 0.2);
}

.mobile-search-close {
    padding: 12px;
    color: #6b7280;
}

.mobile-search-close svg {
    width: 24px;
    height: 24px;
}

/* ======================================
   NAVIGATION BAR
====================================== */
/* ======================================
   NAVIGATION BAR
====================================== */
.nav-bar {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: none;
    align-items: center;
    height: 60px;
    width: 100%;
}

@media (min-width: 768px) {
    .nav-bar {
        display: flex;
        justify-content: center;
    }
}

.nav-inner {
    width: 100%;
    max-width: 1280px;
    display: flex;
    justify-content: center;
    height: 100%;
    background: transparent;
    border: none;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-list li a {
    color: #334155;
    font-size: 16px;
    font-weight: 700;
    padding: 0 15px;
    transition: color 0.2s;
}

.nav-list li a:hover,
.nav-list li a.active {
    color: #64dee8;
}

/* ======================================
   HERO SECTION
====================================== */
.hero {
    position: relative;
    width: calc(100% - 120px);
    max-width: 1200px;
    height: 450px;
    overflow: hidden;
    margin: 60px auto;
    padding: 0;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image,
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: #fff;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-decoration: underline;
    text-underline-offset: 8px;
}

.hero-text {
    font-size: 20px;
    max-width: 650px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero {
        width: calc(100% - 32px);
        height: 350px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-text {
        font-size: 16px;
    }
}

/* ======================================
   GOOGLE REVIEWS BADGE
====================================== */
.google-badge-wrapper {
    text-align: center;
    margin: 20px auto;
}

.google-badge-btn {
    display: inline-block;
}

.google-badge-btn:hover img {
    transform: scale(1.1);
}

.google-badge-btn img {
    height: 50px;
    width: auto;
    transition: transform 0.2s ease;
}

/* ======================================
   WARNING BOX
====================================== */
.warning-box {
    background: #F8D7DA;
    color: #721c24;
    padding: 30px 40px;
    border-radius: 5px;
    text-align: center;
    margin: 30px auto;
    max-width: 600px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

/* ======================================
   REMAINDER OF STYLES (Products, Footer, etc)
====================================== */
.section {
    padding: 40px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 28px;
    color: #1f2937;
    margin-bottom: 10px;
    display: inline-block;
    border-bottom: 3px solid #64dee8;
    padding-bottom: 8px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 15px;
    }
}

/* Product Card Styling - Identical to YoungSheChemicals */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #f3f4f6;
    position: relative;
    cursor: pointer;
    /* Indicates clickability */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #d1fae5;
    /* Subtle green border on hover */
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    letter-spacing: 0.5px;
}

.badge-sale {
    background-color: #ef4444;
    color: white;
}

.badge-new {
    background-color: #10b981;
    color: white;
}

.product-image-wrapper {
    position: relative;
    padding: 15px;
    background: #fff;
    overflow: hidden;
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    transition: transform 0.5s ease, opacity 0.3s ease;
    display: block;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-image.hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 15px;
    box-sizing: border-box;
    opacity: 0;
    z-index: 2;
    background: #fff;
}

.product-card:hover .product-image.hover-image {
    opacity: 1;
}

.product-info {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    /* Centered content */
    background: #fff;
}

/* Gold Stars */
.product-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 8px;
    justify-content: center;
    /* Centered stars */
}

.star {
    width: 14px;
    height: 14px;
    fill: #fbbf24;
    /* Gold/Yellow */
    color: #fbbf24;
}

.product-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    color: #5d36aa;
    /* Button Purple */
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
    /* Centered */
}

.product-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.product-card:hover .product-title a {
    color: #0274BE;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center price too */
    gap: 8px;
}

/* Removed 'From' pseudo-element */

.btn-add-cart {
    width: 100%;
    background-color: #9333ea;
    /* Purple button */
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: auto;
}

.btn-add-cart:hover {
    background-color: #7e22ce;
    /* Darker purple hover */
    transform: translateY(-1px);
}

.btn-add-cart svg {
    width: 18px;
    height: 18px;
}

.footer {
    background-color: #3b4d61;
    color: #d1d5db;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    border-bottom: 2px solid #22d3ee;
    display: inline-block;
    padding-bottom: 5px;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #22d3ee;
}

.footer-badge {
    background: #374151;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.footer-bottom {
    background: #ffffff;
    padding: 15px 0;
    margin-top: 60px;
    color: #4b5563;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.google-rating-img {
    height: 24px;
}

.trusted-shop-btn {
    background-color: #22c55e;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.trusted-shop-btn:hover {
    background-color: #16a34a;
}

/* ======================================
   FEATURES SECTION (Pixel Perfect)
====================================== */
.features-section {
    background-color: #3b4d61;
    color: #ffffff;
    padding: 0;
    text-align: center;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 32px 20px 64px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    color: #ffffff;
    margin-bottom: 0;
    stroke-width: 1.5;
}

.feature-text {
    font-size: 14px;
    line-height: 1.5;
    max-width: 250px;
    font-weight: 500;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================================
   INFORMATIONAL SECTIONS (REFINED)
====================================== */
.info-text-section {
    padding: 64px 0 0;
    text-align: center;
    background-color: #ffffff;
}

.info-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
    letter-spacing: -0.025em;
}

.info-underline {
    width: 64px;
    height: 4px;
    background-color: #22D3EE;
    margin: 0 auto 32px;
    border-radius: 2px;
}

.bg-light-gray {
    background-color: #f9fafb;
}

.info-content-wrapper {
    padding: 64px 0;
}

.info-content {
    max-width: 896px;
    margin: 0 auto;
    text-align: center;
    /* Changed to center per reference */
    color: #4b5563;
    line-height: 1.75;
    font-size: 16px;
}

.info-content p {
    margin-bottom: 1.5rem;
    text-align: left;
    /* Paragraphs are left aligned */
}

.info-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
    text-align: center;
    letter-spacing: -0.025em;
}

.service-highlights {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin-top: 32px;
    justify-content: center;
}

@media (min-width: 768px) {
    .service-highlights {
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
        /* Centers items in their columns */
    }
}

.service-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #4b5563;
    /* Gray per reference */
}

.check-icon {
    color: #10b981;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ======================================
   FAQ SECTION (Elementor Style Match)
====================================== */
.faq-section {
    padding: 20px 0;
    font-family: "Rubik", Sans-serif;
}

.elementor-heading-title {
    color: #494c4f;
    font-family: "Rubik", Sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.1em;
    padding: 0;
    margin: 0;
}

.elementor-widget-heading .elementor-widget-container {
    text-align: center;
    margin-bottom: 20px;
}

.elementor-divider-separator {
    width: 60px;
    margin: 0 auto;
    border-top: 3px solid #21D4E7;
    display: block;
}

.elementor-widget-divider {
    margin-bottom: 40px;
    text-align: center;
}

.elementor-widget-toggle {
    font-family: "Rubik", Sans-serif;
}

.elementor-toggle-item {
    margin-bottom: 0;
}

.elementor-tab-title {
    font-weight: 600;
    line-height: 1;
    background-color: transparent;
    color: #494c4f;
    padding: 15px 0;
    border-bottom: 1px solid #d4d4d4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color .3s;
}

.elementor-tab-title:hover {
    color: #4054b2;
}

.elementor-tab-title.active {
    color: #4054b2;
    border-bottom: 1px solid #d4d4d4;
}

.elementor-toggle-title {
    flex-grow: 1;
    /* Text takes remaining space */
    font-size: 15px;
}

.elementor-toggle-icon {
    margin-left: 10px;
    display: inline-block;
    width: 1em;
    height: 1em;
    position: relative;
    /* Arrow Icon Styling */
    font-size: 15px;
    color: #4054b2;
}

.elementor-toggle-icon svg {
    height: 1em;
    width: 1em;
    fill: currentColor;
}

.elementor-toggle-icon-opened {
    display: none;
}

.elementor-tab-title.active .elementor-toggle-icon-closed {
    display: none;
}

.elementor-tab-title.active .elementor-toggle-icon-opened {
    display: inline-block;
}

.elementor-tab-content {
    display: none;
    padding: 20px 0;
    border-bottom: 1px solid #d4d4d4;
    color: #7a7a7a;
    font-size: 14px;
    line-height: 1.7em;
}

.elementor-tab-title.active+.elementor-tab-content {
    display: block;
}

/* Hide default markers as we use custom SVG icons */
.faq-question::before {
    display: none !important;
}

.faq-question {
    /* Legacy override */
    padding: 0 !important;
    display: block !important;
}

/* News Section Added */
.news-section {
    padding: 64px 0;
    background-color: #f9fafb;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
}

.news-card:hover {
    transform: translateY(-2px);
}

.news-image-placeholder {
    height: 192px;
    width: 100%;
}

.news-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
    line-height: 1.4;
}

.news-excerpt {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-meta {
    margin-top: auto;
    font-size: 13px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    font-weight: 500;
}

/* ======================================
   FLOATING TRUST BADGE
====================================== */
.trust-badge-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    /* Center horizontally */
    width: 150px;
    /* Fixed width for centering */
    z-index: 9999;
    display: flex;
    z-index: 99999;
    /* Max z-index */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease-out;
    transform: translateY(50%);
    /* Move down by 50% of total height (hiding the bottom black image) */
}

.trust-badge-container:hover {
    transform: translateY(0%);
    /* Slide up to show full content */
}

.trust-badge-white {
    display: block;
    width: 150px;
    /* Adjust based on image ratio */
    height: auto;
    cursor: pointer;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    /* Stronger shadow for visibility */
    background-color: #fff;
    /* Ensure transparent parts don't look weird */
    position: relative;
    z-index: 2;
}

.trust-badge-black {
    display: block;
    width: 150px;
    height: auto;
    cursor: pointer;
    background-color: #000;
    /* Ensure black bg matches image */
}

/* ======================================
   GOOGLE TRANSLATE WIDGET (GTranslate)
====================================== */
.gtranslate_wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
}

/* Force override inline styles of the widget iframe/container */
#gt_float_wrapper {
    left: auto !important;
    right: 20px !important;
    bottom: 20px !important;
}

iframe[src*="gtranslate"] {
    left: auto !important;
    right: 20px !important;
}

.notification {
    position: fixed;
    bottom: 80px;
    /* Moved up to avoid overlap with Translate */
    right: 20px;
    background-color: #10b981;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease-out;
    z-index: 50;
}

/* ======================================
   ACTIVE DISCOUNTS BOX
====================================== */
.discounts-box {
    background-color: #D1D5DB;
    /* Exact Grey from original */
    border-radius: 10.4px;
    padding: 40px 16px;
    text-align: center;
    max-width: 600px;
    margin: 40px auto 10px;
    border: none;
}

.discounts-title {
    font-size: 30px;
    color: #334155;
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
}

.discounts-underline {
    width: 64px;
    height: 4px;
    background-color: #21D4E7;
    margin: 0 auto 25px;
}

.discounts-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.discounts-list li {
    font-size: 18px;
    color: #334155;
    margin-bottom: 8px;
    font-weight: 500;
}

.discounts-info-box {
    background-color: #FFFFFF;
    border-radius: 10.4px;
    padding: 16px 24px;
    color: #21D4E7;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 25px;
    display: inline-block;
}

.trust-badge img {
    height: 50px;
    display: block;
    margin: 0 auto;
}

.vertrouwde-winkel-badge {
    text-align: center;
    margin-bottom: 40px;
}

.vertrouwde-winkel-badge img {
    height: 30px;
    display: inline-block;
}

/* Jet Woo Product Styles - Extracted from Research Chemicals Kopen? HTML */

/* Base Item Structure */
.jet-woo-products__item {
    position: relative;
    border-style: solid;
    border-width: 1px;
    border-color: #ededed;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.jet-woo-products__item:hover {
    border-color: #54595f;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
}

.jet-woo-products__inner-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Image Wrapper */
.jet-woo-products__thumb-wrap {
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.jet-woo-product-thumbnail {
    text-align: center;
}

.jet-woo-product-thumbs {
    position: relative;
    padding-bottom: 100%;
    /* 1:1 Aspect Ratio */
    height: 0;
}

.jet-woo-product-thumbs__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jet-woo-product-thumbs img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* Hover Effect Logic */
.jet-woo-product-thumbs .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
}

.jet-woo-products__item:hover .hover-image {
    opacity: 1;
}

/* Content Area */
.jet-woo-products__item-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Stock Status */
.jet-woo-product-stock-status {
    margin-bottom: 5px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.jet-woo-product-stock-status__in-stock {
    color: #5cb85c;
}

.jet-woo-product-stock-status__out-of-stock {
    color: #d9534f;
}

/* Title */
.jet-woo-product-title {
    margin-bottom: 10px;
    font-family: "Rubik", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3em;
}

.jet-woo-product-title a {
    color: #242424;
    text-decoration: none;
    transition: color 0.3s;
}

.jet-woo-product-title a:hover {
    color: #5d36aa;
}

/* Price */
.jet-woo-product-price {
    margin-bottom: 10px;
    font-family: "Rubik", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #4054b2;
}

/* Rating */
.jet-woo-product-rating {
    margin-bottom: 15px;
}

.star-rating {
    color: #ffb900;
    /* Exact Gold from Ref */
    font-size: 14px;
}

/* Hover Content (Button) */
.hovered-content {
    margin-top: auto;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.jet-woo-products__item:hover .hovered-content {
    opacity: 1;
    transform: translateY(0);
}

/* Add to Cart Button */
.jet-woo-product-button .button {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background-color: #5d36aa;
    /* Exact Purple */
    /* Blue button */
    color: #ffffff;
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}

.jet-woo-product-button .button:hover {
    background-color: #4a2b8a;
    /* Darker Purple for hover */
}

/* Overlay Link */
.jet-woo-item-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Ensure it doesn't block button clicks if z-index issues arise, handled by button z-index usually */
}

.jet-woo-products__item-content {
    position: relative;
    z-index: 5;
    /* Ensure content is clickable above overlay */
}

/* Grid Override from Style.css */
@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px;
    }
}

/* Jet Woo Product Styles - Extracted from Research Chemicals Kopen? HTML */

/* Base Item Structure */
.jet-woo-products__item {
    position: relative;
    border-style: solid;
    border-width: 1px;
    /* Set to 1px but transparent to prevent layout shift */
    border-color: transparent;
    /* Invisible by default */
    border-radius: 0px;
    padding: 20px;
    box-shadow: none;
    background-color: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 20px;
}

.jet-woo-products__item:hover {
    border-color: #54595f !important;
    /* Visible on hover */
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1) !important;
}

.jet-woo-products__inner-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Image Wrapper */
.jet-woo-products__thumb-wrap {
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.jet-woo-product-thumbnail {
    text-align: center;
}

.jet-woo-product-thumbs {
    position: relative;
    padding-bottom: 100%;
    /* 1:1 Aspect Ratio */
    height: 0;
}

.jet-woo-product-thumbs__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jet-woo-product-thumbs img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* Hover Effect Logic */
.jet-woo-product-thumbs .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
}

.jet-woo-products__item:hover .hover-image {
    opacity: 1;
}

/* Content Area */
.jet-woo-products__item-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Stock Status */
.jet-woo-product-stock-status {
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 400;
    text-transform: capitalize;
}

.jet-woo-product-stock-status__in-stock {
    color: #1e9401;
    /* Exact Green */
}

.jet-woo-product-stock-status__out-of-stock {
    color: #d9534f;
}

/* Title */
.jet-woo-product-title {
    margin-bottom: 10px;
    font-family: "Rubik", Sans-serif;
    font-size: 16px;
    /* Keeping 16px for balance, ref was 20 but might be too big for grid */
    font-weight: 500;
    line-height: 1.3em;
}

.jet-woo-product-title a {
    color: #242424;
    text-decoration: none;
    transition: color 0.3s;
}

.jet-woo-product-title a:hover {
    color: #5d36aa;
    /* Reference Purple */
}

/* Price */
/* Price */
.jet-woo-product-price {
    margin-bottom: 10px;
    font-family: "Rubik", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    /* Black as requested (User: "fiyatlar siyah") */
}

/* Rating */
.jet-woo-product-rating {
    margin-bottom: 15px;
}

.star-rating {
    color: #ffb900;
    /* Reference exact gold */
    font-size: 14px;
}

/* Hover Content (Button) */
.hovered-content {
    margin-top: auto;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.jet-woo-products__item:hover .hovered-content {
    opacity: 1;
    transform: translateY(0);
}

/* Add to Cart Button */
.jet-woo-product-button .button {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background-color: #5d36aa;
    /* Purple as requested */
    color: #ffffff;
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}

.jet-woo-product-button .button:hover {
    background-color: #4a2b8a;
}

/* Overlay Link */
.jet-woo-item-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Ensure it doesn't block button clicks if z-index issues arise, handled by button z-index usually */
}

.jet-woo-products__item-content {
    position: relative;
    z-index: 5;
    /* Ensure content is clickable above overlay */
}

/* Grid Override from Style.css */
@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px;
    }
}

/* Product Card Hover Image */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
    /* height removed - use padding-top: 100% instead for responsive sizing */
}

.product-image-wrapper img {
    transition: opacity 0.3s ease-in-out;
}

.product-image-wrapper .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}

.product-image-wrapper:hover .main-image {
    opacity: 0;
}

.product-image-wrapper:hover .hover-image {
    opacity: 1;
}

/* ======================================
   PRODUCT GALLERY STYLES
====================================== */
.product-gallery {
    max-width: 500px;
}

.product-gallery .main-image {
    width: 100%;
    height: 400px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    margin-bottom: 16px;
}

.product-gallery .main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-gallery .thumbnail-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-gallery .thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.product-gallery .thumbnail:hover {
    border-color: #5e37aa;
}

.product-gallery .thumbnail.active {
    border-color: #5e37aa;
    box-shadow: 0 0 0 2px rgba(94, 55, 170, 0.3);
}

.product-gallery .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Product Detail Styles */
.product-detail {
    padding: 40px 0;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
}

.product-detail-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.product-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: #5e37aa;
    margin-bottom: 20px;
}

.product-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.quantity-btn:hover {
    background: #e5e7eb;
}

.quantity-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}

.btn-buy-now {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #5e37aa 0%, #7c4ddb 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(94, 55, 170, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .product-detail .container>div {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .product-gallery {
        max-width: 100%;
    }

    .product-gallery .main-image {
        height: 300px;
    }
}

/* Gallery Slider with Arrows */
.gallery-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.main-image-container {
    width: 100%;
    height: 400px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
}

.main-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-arrow:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-arrow svg {
    width: 24px;
    height: 24px;
    stroke: #333;
}

.gallery-arrow-left {
    left: 10px;
}

.gallery-arrow-right {
    right: 10px;
}

@media (max-width: 768px) {
    .main-image-container {
        height: 300px;
    }

    .gallery-arrow {
        width: 36px;
        height: 36px;
    }

    .gallery-arrow svg {
        width: 20px;
        height: 20px;
    }
}

/* ======================================
   PRODUCT GRID & CARDS
====================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-card .product-image {
    position: relative;
    padding-top: 100%;
    background: #f9fafb;
    overflow: hidden;
}

.product-card .product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

/* Product Image Wrapper - for category.php and search.php */
.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* 1:1 aspect ratio */
    background: #f9fafb;
    overflow: hidden;
}

.product-image-wrapper a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product-image-wrapper img.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: opacity 0.3s ease;
}

.product-image-wrapper img.main-image {
    opacity: 1;
}

.product-image-wrapper img.hover-image {
    opacity: 0;
}

.product-image-wrapper:hover img.main-image {
    opacity: 0;
}

.product-image-wrapper:hover img.hover-image {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #5e37aa 0%, #7c4ddb 100%);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 5;
}

.product-card .product-title {
    padding: 12px 12px 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .product-title a {
    color: inherit;
    text-decoration: none;
}

.product-card .product-price {
    padding: 4px 12px 8px;
    font-size: 18px;
    font-weight: 700;
    color: #5e37aa;
}

.product-card .btn-add-cart {
    margin: 8px 12px 12px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #5e37aa 0%, #7c4ddb 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
}

.product-card .btn-add-cart:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.product-card .btn-add-cart svg {
    width: 16px;
    height: 16px;
}

/* Product Rating Stars */
.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 8px 12px 0;
}

.product-rating .star {
    width: 14px;
    height: 14px;
    fill: #fbbf24;
}

@media (max-width: 480px) {
    .product-card .product-title {
        font-size: 12px;
        padding: 8px 8px 4px;
        min-height: 32px;
    }

    .product-card .product-price {
        font-size: 15px;
        padding: 4px 8px;
    }

    .product-card .btn-add-cart {
        margin: 6px 8px 10px;
        padding: 8px 10px;
        font-size: 11px;
    }

    .product-badge {
        font-size: 9px;
        padding: 3px 6px;
    }
}