/* ========================================
   REFLESH - Custom CSS (Tailwind-free)
   ======================================== */

/* === RESET & BASE === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    font-family: "DejaVu Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: #f9fafb;
    color: #111827;
    line-height: 1.5;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
}

input {
    font: inherit;
}

ul {
    list-style: none;
}

/* === FONTS === */
.header-font,
header nav a,
header button,
header .logo-text {
    font-family: "BPG Arial Caps", sans-serif !important;
}

.section-title-font {
    font-family: "BPG Arial Caps", sans-serif !important;
}

.product-card h3,
.premium-card h3 {
    font-family: "DejaVu Sans", sans-serif !important;
}

footer * {

}

/* === UTILITY: HIDDEN === */
.hidden {
    display: none !important;
}




/* === CONTAINER === */
.container {
    width: 100%;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* === ANIMATIONS === */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

.slide-enter {
    animation: fadeIn 0.5s ease-in-out;
}

.dropdown-enter {
    animation: fadeIn 0.3s ease-in-out;
}

.fa-spin {
    animation: spin 1s linear infinite;
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

/* Logo */
.logo-wrap {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.logo-icon span {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop Nav */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.desktop-nav a,
.desktop-nav .dropdown-trigger {
    color: #374151;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.desktop-nav a:hover,
.desktop-nav .dropdown-trigger:hover {
    color: #2563eb;
}

/* Dropdown */
.dropdown {
    position: relative;
}

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

.dropdown-trigger i {
    font-size: 0.65rem;
    margin-top: 2px;
}

.dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 0.5rem;
    width: 22rem;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid #f3f4f6;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #374151;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background-color: #eff6ff;
    color: #2563eb;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Search */
.search-bar {
    display: none;
    align-items: center;
    background: #f3f4f6;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
}

.search-bar form {
    display: flex;
    align-items: center;
}

.search-submit {
    appearance: none;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.search-bar i {
    color: #9ca3af;
    margin-right: 0.5rem;
}

.search-bar input {
    background: transparent;
    border: none;
    outline: none;
    color: #374151;
    width: 10rem;
}

/* Mobile Toggle */
.mobile-toggle {
    color: #374151;
    font-size: 1.25rem;
    display: block;
}

/* Mobile Menu */
.mobile-menu {
    padding: 1rem 0;
}

.mobile-menu a {
    display: block;
    color: #374151;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    transition: color 0.2s;
    font-family: "BPG Arial Caps", sans-serif !important;
    font-size: 14px;
}

.mobile-menu a:hover {
    color: #2563eb;
}

.mobile-catalog-wrap {
    border-bottom: 1px solid #f3f4f6;
}

.mobile-catalog-btn {
    width: 100%;
    text-align: left;
    color: #374151;
    font-weight: 500;
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.mobile-catalog-btn:hover {
    color: #2563eb;
}

.mobile-catalog-list {
    padding-left: 1rem;
    padding-bottom: 0.75rem;
}

.mobile-catalog-list a {
    padding: 0.5rem 0;
    color: #4b5563;
    border-bottom: none;
}

.mobile-search {
    display: flex;
    align-items: center;
    background: #f3f4f6;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
}

.mobile-search form {
    display: flex;
    align-items: center;
    width: 100%;
}

.mobile-search i {
    color: #9ca3af;
    margin-right: 0.5rem;
}

.mobile-search input {
    background: transparent;
    border: none;
    outline: none;
    color: #374151;
    width: 100%;
}

/* ========================================
   HERO / SLIDER SECTION
   ======================================== */
.hero-section {
    padding: 2rem 0 3rem;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text {
    margin-bottom: 2.5rem;
    text-align: center;
}

.hero-text h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text h2 span {
    color: #1d4ed8;
}

.hero-text h3 {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.75;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary {
    background: linear-gradient(to right, #2563eb, #1e40af);
    color: #fff;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: box-shadow 0.3s, transform 0.3s;
    text-align: center;
    display: inline-block;
}

.btn-primary:hover {
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    transform: translateY(-1px);
}

.btn-secondary {
    background: #fff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s, transform 0.3s;
    text-align: center;
    display: inline-block;
}

.btn-secondary:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

/* Slider */
.hero-slider {
    width: 100%;
    position: relative;
}

.slider-container {
    position: relative;
    height: 16rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.slide {
    position: absolute;
    inset: 0;
}

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

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
}

.slide-content {
    padding: 1.5rem;
    color: #fff;
}

.slide-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.slide-content p {
    color: #e5e7eb;
    font-size: 0.9rem;
}

/* Slider Controls */
.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.75rem;
}

.slider-control {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #d1d5db;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.slider-control.active {
    background: #2563eb;
    width: 1rem;
    height: 1rem;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background 0.2s;
    z-index: 5;
}

.slider-arrow:hover {
    background: #fff;
}

.slider-arrow--prev {
    left: 0.5rem;
}

.slider-arrow--next {
    right: 0.5rem;
}

/* ========================================
   SECTION COMMON
   ======================================== */
.section {
    padding: 3rem 0;
}

.section--white {
    background: #fff;
}

.section--gray {
    background: #f9fafb;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
    gap: 1rem;
    text-align: center;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.section-header .view-all {
    display: flex;
    align-items: center;
    color: #2563eb;
    font-weight: 500;
    gap: 0.5rem;
    transition: color 0.2s;
}

.section-header .view-all:hover {
    color: #1e40af;
}

/* ========================================
   PRODUCT GRID
   ======================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid #f3f4f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-card__image-wrap {
    position: relative;
    overflow: hidden;
}

.product-card__image-wrap img {
    width: 100%;
    height: 10rem;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-card__image-wrap img {
    transform: scale(1.03);
}

.product-card__body {
    padding: 0.75rem;
}

.product-card__body h3 {
    font-weight: 700;
    color: #111827;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-card__body h3 a {
    color: inherit;
    transition: color 0.2s;
}

.product-card__body h3 a:hover {
    color: #2563eb;
}

.price-old {
    color: #ef4444;
    text-decoration: line-through;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.price-current {
    color: #16a34a;
    font-weight: 700;
    font-size: 1.05rem;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tag {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.15rem 0.5rem;
    border-radius: 0.25rem;
}

.tag--green {
    background: #dcfce7;
    color: #166534;
}

.tag--blue {
    background: #dbeafe;
    color: #1e40af;
}

.tag--yellow {
    background: #fef3c7;
    color: #92400e;
}

/* Badges */
.badge {
    position: absolute;
    top: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 10;
    color: #fff;
}

.badge--discount {
    left: 0.75rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.badge--new {
    left: 0.75rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.badge--premium {
    right: 0.75rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* ========================================
   PREMIUM SECTION
   ======================================== */
.premium-bg {
    background: linear-gradient(135deg, #fefce8 0%, #fffbeb 50%, #fef3c7 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.premium-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f59e0b' fill-opacity='0.05'%3E%3Cpath d='M50 50v-6h-4v6h-6v4h6v6h4v-6h6v-4h-6zm0-40V0h-4v10h-6v4h6v6h4v-6h6v-4h-6zM10 50v-6H6v6H0v4h6v6h4v-6h6v-4h-6zM10 10V0H6v10H0v4h6v6h4v-6h6v-4h-6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.premium-header {
    text-align: center;
    margin-bottom: 3rem;
}

.premium-header__icon-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    gap: 0.75rem;
}

.premium-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #fbbf24, #d97706);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-icon i {
    color: #fff;
    font-size: 1.25rem;
}

.premium-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.premium-header p {
    color: #4b5563;
    max-width: 42rem;
    margin: 0 auto;
}

/* Premium Card */
.premium-card {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.premium-card__image-wrap {
    position: relative;
}

.premium-card__image-wrap img {
    width: 100%;
    height: 10rem;
    object-fit: cover;
}

.premium-card__body {
    padding: 0.75rem;
    background: linear-gradient(to bottom, #fff, #fefce8);
}

.premium-card__body h3 {
    font-weight: 700;
    color: #111827;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.premium-card__body h3 a {
    color: inherit;
    transition: color 0.2s;
}

.premium-card__body h3 a:hover {
    color: #d97706;
}

.premium-price {
    color: #ca8a04;
    font-weight: 700;
    font-size: 1.05rem;
}

.premium-stars {
    display: flex;
    align-items: center;
    color: #ca8a04;
    font-size: 0.875rem;
    margin-top: 0.75rem;
    gap: 0.25rem;
}

.premium-stars span {
    margin-left: 0.5rem;
    color: #4b5563;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial-bg {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.testimonial-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.testimonial-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.testimonial-header p {
    color: #4b5563;
    max-width: 42rem;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.testimonial-card__header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.testimonial-avatar--blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}
.testimonial-avatar--blue i { color: #2563eb; }

.testimonial-avatar--green {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}
.testimonial-avatar--green i { color: #16a34a; }

.testimonial-avatar--purple {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
}
.testimonial-avatar--purple i { color: #9333ea; }

.testimonial-avatar--yellow {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}
.testimonial-avatar--yellow i { color: #ca8a04; }

.testimonial-avatar--red {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
}
.testimonial-avatar--red i { color: #dc2626; }

.testimonial-avatar--teal {
    background: linear-gradient(135deg, #ccfbf1, #99f6e4);
}
.testimonial-avatar--teal i { color: #0d9488; }

.testimonial-avatar i {
    font-size: 1.25rem;
}

.testimonial-card__header h4 {
    font-weight: 700;
    color: #111827;
    font-size: 0.95rem;
}

.testimonial-card__header p {
    color: #6b7280;
    font-size: 0.8rem;
}

.testimonial-stars {
    display: flex;
    margin-bottom: 1rem;
    gap: 0.15rem;
}

.testimonial-stars i {
    color: #facc15;
}

.testimonial-card__text {
    color: #374151;
    font-style: italic;
    line-height: 1.7;
    font-size: 0.92rem;
}

/* Testimonials Controls */
.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-arrow {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #fff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: background 0.2s;
}

.testimonial-arrow:hover {
    background: #eff6ff;
}

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

.testimonial-control {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-control.active {
    background: #2563eb;
    width: 1rem;
    height: 1rem;
}

.testimonials-view-all {
    text-align: center;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.testimonials-view-all a {
    display: inline-flex;
    align-items: center;
    color: #2563eb;
    font-weight: 500;
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #dbeafe;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    gap: 0.5rem;
    transition: all 0.2s;
}

.testimonials-view-all a:hover {
    background: #eff6ff;
    color: #1e40af;
}

/* ========================================
   VIDEO SECTION
   ======================================== */
.video-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f9fafb, #fff);
}

.video-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: #111827;
    margin-bottom: 3rem;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.video-card {
    text-align: center;
}

.video-thumbnail {
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    margin-bottom: 1.5rem;
    position: relative;
}

.video-thumbnail__inner {
    position: relative;
    height: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail__inner--blue {
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.video-thumbnail__inner--green {
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.video-thumbnail__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.video-thumbnail:hover .video-thumbnail__overlay {
    background: rgba(0, 0, 0, 0.4);
}

.video-play-btn {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.video-thumbnail:hover .video-play-btn {
    transform: scale(1.1);
}

.video-play-btn i {
    font-size: 1.5rem;
    margin-left: 3px;
}

.video-play-btn--blue i { color: #2563eb; }
.video-play-btn--green i { color: #16a34a; }

.video-thumbnail__content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 1.5rem;
}

.video-thumbnail__content i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.video-thumbnail__content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.video-thumbnail__content p {
    opacity: 0.9;
}

.video-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.video-card > p {
    color: #374151;
    margin-bottom: 1.5rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.video-btn {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
    gap: 0.5rem;
}

.video-btn--blue {
    background: #2563eb;
}
.video-btn--blue:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.video-btn--green {
    background: #16a34a;
}
.video-btn--green:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(22, 163, 74, 0.3);
}

/* ========================================
   VIDEO MODAL
   ======================================== */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    animation: fadeIn 0.3s ease-out;
}

.video-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.video-modal__content-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1rem;
}

.video-modal__content {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 56rem;
    overflow: hidden;
}

.video-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.video-modal__header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.video-modal__header button {
    color: #9ca3af;
    transition: color 0.2s;
}

.video-modal__header button:hover {
    color: #4b5563;
}

.video-modal__header button i {
    font-size: 1.5rem;
}

.video-modal__player {
    position: relative;
    background: #000;
    aspect-ratio: 16 / 9;
}

.video-modal__player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal__placeholder .text-center {
    text-align: center;
    color: #fff;
}

.video-modal__placeholder i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.video-modal__description {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e7eb;
    color: #374151;
}

.video-modal__footer {
    padding: 1rem 1.5rem;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.video-modal__footer-info {
    display: flex;
    align-items: center;
    color: #374151;
    font-size: 0.875rem;
    gap: 0.5rem;
}

.video-modal__footer-info i {
    color: #2563eb;
}

.video-modal__footer-btns {
    display: flex;
    gap: 1rem;
}

.modal-btn {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background 0.2s;
    gap: 0.5rem;
}

.modal-btn--blue {
    background: #2563eb;
}
.modal-btn--blue:hover {
    background: #1d4ed8;
}

.modal-btn--gray {
    background: #4b5563;
}
.modal-btn--gray:hover {
    background: #374151;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Footer Company */
.footer-company {
    grid-column: span 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #3b82f6, #93c5fd);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.footer-logo-icon span {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-company > p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.footer-social-link--fb:hover { background: #1d4ed8; }
.footer-social-link--ig:hover { background: #db2777; }
.footer-social-link--li:hover { background: #2563eb; }
.footer-social-link--yt:hover { background: #dc2626; }

/* Footer Links */
.footer-links h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #cbd5e1;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
}

/* Footer Contact */
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact li.align-start {
    align-items: flex-start;
}

.footer-contact li.align-start i {
    margin-top: 4px;
}

.footer-contact i {
    color: #60a5fa;
    width: 1rem;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact span {
    color: #cbd5e1;
    font-size: 0.95rem;
}

/* Footer Copyright */
.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #9ca3af;
    transition: color 0.2s;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* ========================================
   PRODUCT DETAIL PAGE
   ======================================== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    font-size: 0.9rem;
    color: #6b7280;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #2563eb;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #1e40af;
}

.breadcrumb span {
    color: #9ca3af;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem 0;
}

.product-detail__gallery {
    position: relative;
}

.product-detail__main-image {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-detail__thumbnails {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.product-detail__thumbnails img {
    width: 5rem;
    height: 5rem;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.product-detail__thumbnails img:hover,
.product-detail__thumbnails img.active {
    border-color: #2563eb;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.product-detail__info h1 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-detail__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-detail__rating .stars {
    display: flex;
    gap: 0.15rem;
    color: #facc15;
}

.product-detail__rating span {
    color: #6b7280;
    font-size: 0.9rem;
}

.product-detail__price-block {
    background: #f9fafb;
    border-radius: 0.75rem;
    padding: 2px;
    margin-bottom: 1.5rem;
}

.product-detail__price-old {
    color: #ef4444;
    text-decoration: line-through;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.product-detail__price-current {
    font-size: 2rem;
    font-weight: 700;
    color: #16a34a;
}

.product-detail__price-save {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    margin-top: 0.5rem;
}

.product-detail__description {
    margin-bottom: 1.5rem;
    color: #374151;
    line-height: 1.8;
}

.product-detail__features {
    margin-bottom: 2rem;
}

.product-detail__features h3 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
}

.feature-item i {
    color: #16a34a;
    width: 1.25rem;
    text-align: center;
    flex-shrink: 0;
}

/* Quantity & Cart */
.product-detail__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    overflow: hidden;
    width: fit-content;
}

.quantity-selector button {
    width: 2.5rem;
    height: 2.5rem;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    font-size: 1.1rem;
    transition: background 0.2s;
}

.quantity-selector button:hover {
    background: #e5e7eb;
}

.quantity-selector input {
    width: 3rem;
    height: 2.5rem;
    text-align: center;
    border: none;
    border-left: 1px solid #d1d5db;
    border-right: 1px solid #d1d5db;
    outline: none;
    font-weight: 600;
    color: #111827;
}

.btn-add-to-cart {
    background: linear-gradient(to right, #2563eb, #1e40af);
    color: #fff;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s;
    font-size: 1.05rem;
}

.btn-add-to-cart:hover {
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    transform: translateY(-1px);
}

.btn-add-to-cart i {
    font-size: 1.1rem;
}

.product-detail__meta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.product-detail__meta strong {
    color: #374151;
}

/* Tabs */
.product-tabs {
    margin: 3rem 0;
}

.product-tabs__nav {
    display: flex;
    border-bottom: 2px solid #e5e7eb;
    gap: 0;
    overflow-x: auto;
}

.product-tabs__nav button {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: #6b7280;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
    white-space: nowrap;
}

.product-tabs__nav button:hover {
    color: #2563eb;
}

.product-tabs__nav button.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

.product-tabs__content {
    padding: 2rem 0;
    color: #374151;
    line-height: 1.8;
}

.product-tabs__content h3 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.product-tabs__content p {
    margin-bottom: 1rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #f3f4f6;
}

.specs-table td {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

.specs-table td:first-child {
    font-weight: 600;
    color: #111827;
    width: 40%;
}

/* Related Products */
.related-products {
    padding: 3rem 0;
    border-top: 1px solid #e5e7eb;
}

.related-products h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* SM: 640px+ */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }

    .slider-container {
        height: 20rem;
    }

    .products-grid {
        gap: 1.5rem;
    }

    .video-modal__footer {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* MD: 768px+ */
@media (min-width: 768px) {
    .search-bar {
        display: flex;
    }

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

    .hero-text h3 {
        font-size: 1.25rem;
    }

    .slider-container {
        height: 24rem;
    }

    .slider-arrow--prev {
        left: 1rem;
    }

    .slider-arrow--next {
        right: 1rem;
    }

    .slide-content h3 {
        font-size: 1.5rem;
    }

    .section-header {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .section-header h2 {
        font-size: 1.875rem;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-card__image-wrap img,
    .premium-card__image-wrap img {
        height: 14rem;
    }

    .product-card__body,
    .premium-card__body {
        padding: 1rem;
    }

    .product-card__body h3,
    .premium-card__body h3 {
        font-size: 1.05rem;
        margin-bottom: 0.75rem;
    }

    .price-current,
    .premium-price {
        font-size: 1.25rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .premium-header h2 {
        font-size: 1.875rem;
    }

    .testimonial-header h2 {
        font-size: 1.875rem;
    }

    .video-section h2 {
        font-size: 1.875rem;
    }

    .video-thumbnail__inner {
        height: 20rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .product-detail__main-image {
        height: 32rem;
    }
}

/* LG: 1024px+ */
@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }

    .mobile-toggle {
        display: none;
    }

    .hero-inner {
        flex-direction: row;
        justify-content: space-between;
    }

    .hero-text {
        width: 50%;
        margin-bottom: 0;
        padding-right: 3rem;
        text-align: left;
    }

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

    .hero-slider {
        width: 50%;
    }

    .products-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .product-detail {
        grid-template-columns: 1fr 1fr;
    }

    .product-detail__actions {
        flex-direction: row;
        align-items: center;
    }
}


/* Search page */
.search-page-form{margin-top:12px;margin-bottom:24px;}
.search-page-row{display:flex;gap:10px;align-items:center;max-width:520px;}
.search-page-input{flex:1;height:44px;padding:0 12px;border:1px solid #e5e7eb;border-radius:10px;outline:none;}
.search-page-input:focus{border-color:#2563eb;box-shadow:0 0 0 3px rgba(37,99,235,.15);}
.search-page-submit{height:44px;padding:0 16px;border-radius:10px;border:0;background:#2563eb;color:#fff;font-weight:600;cursor:pointer;}
.search-page-submit:hover{filter:brightness(.95);}
.pagination-wrap{margin-top:18px;}
.search-empty{padding:18px;border:1px solid #e5e7eb;border-radius:12px;background:#fff;}


/* === Pagination (Search/Category) === */
.pagination-wrap{margin-top:18px;display:flex;justify-content:center;gap:8px;flex-wrap:wrap;}
.pagination-wrap a,
.pagination-wrap span,
.pagination-wrap b{
  min-width:36px;height:36px;display:inline-flex;align-items:center;justify-content:center;
  padding:0 10px;border-radius:10px;border:1px solid #e5e7eb;background:#fff;color:#0f172a;
  text-decoration:none;font-weight:600;line-height:1;
}
.pagination-wrap a:hover{background:#f1f5f9;}
.pagination-wrap b,
.pagination-wrap span.active,
.pagination-wrap span.current,
.pagination-wrap span.nav_ext{
  background:#2563eb;color:#fff;border-color:#2563eb;
}
.pagination-wrap span{background:#fff;color:#0f172a;}