/**
 * MAGGWEAR E-TICARET - Frontend Stil Dosyasi
 *
 * Renk semasi: Primary #0f172a (deep navy), Accent #f97316 (warm orange)
 * Font: Poppins (Google Fonts)
 * Framework: Bootstrap 5, Font Awesome 6
 *
 * @author  MaggWear Team
 * @version 3.0.0
 */

/* ================================================================
   CSS DEGISKENLERI
   ================================================================ */
:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --primary-dark: #020617;
    --accent: #f97316;
    --accent-hover: #ea580c;
    --accent-light: rgba(249, 115, 22, 0.1);
    --accent-medium: rgba(249, 115, 22, 0.15);
    --success: #10b981;
    --success-light: rgba(16, 185, 129, 0.1);
    --warning: #f59e0b;
    --info: #3b82f6;
    --danger: #ef4444;
    --dark: #0f172a;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --body-bg: #ffffff;
    --body-color: #334155;
    --font-family: 'Poppins', sans-serif;
    --border-radius: 10px;
    --border-radius-lg: 16px;
    --border-radius-sm: 6px;
    --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
    --transition: all 0.25s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.35s ease;
    --header-offset: 0px;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    font-size: 14px;
    color: var(--body-color);
    background-color: var(--body-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: var(--header-offset, 0);
    transition: padding-top 0.2s ease;
}
body.header-hidden {
    padding-top: 0;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

::selection {
    background-color: var(--accent);
    color: var(--white);
}

/* ================================================================
   UTILITY CLASSES
   ================================================================ */
.text-accent { color: var(--accent) !important; }
.bg-accent { background-color: var(--accent) !important; }

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 11px 30px;
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
}
.btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-hover) 0%, #c2410c 100%);
    opacity: 0;
    transition: var(--transition);
}
.btn-accent:hover,
.btn-accent:focus {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
}
.btn-accent:hover::before {
    opacity: 1;
}
.btn-accent span,
.btn-accent i {
    position: relative;
    z-index: 1;
}

.section-padding {
    padding: 70px 0;
}

.min-vh-75 {
    min-height: 75vh;
}

/* ================================================================
   TOP BAR
   ================================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    transform: translateY(0);
    transition: transform 0.3s ease;
}
body.header-hidden .site-header {
    transform: translateY(-100%);
}
.top-bar {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 8px 0;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.top-bar a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition-fast);
}
.top-bar a:hover {
    color: var(--accent);
}
.top-bar .separator {
    margin: 0 12px;
    opacity: 0.3;
}
.top-bar .social-icons a {
    margin-left: 10px;
    font-size: 14px;
}
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}
.top-bar-shopier {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    margin-right: 10px;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.25);
    font-weight: 600;
}
.top-bar-shopier i {
    font-size: 12px;
}
.top-bar-translate {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
}
.top-bar-translate i {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}
.top-bar-translate .lang-label {
    display: none;
}
.top-bar-translate .goog-te-gadget {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.1;
}
.top-bar-translate .goog-te-gadget span {
    display: none;
}
.top-bar-translate .goog-te-combo {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: rgba(15, 23, 42, 0.35) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 8 10 12 14 8'/%3E%3C/svg%3E") no-repeat right 8px center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 2px 18px 2px 8px;
    font-size: 9.5px;
    font-weight: 600;
    max-width: 72px;
    outline: none;
}
.top-bar-translate .goog-te-combo option {
    color: #111;
}
.nav-lang {
    padding: 8px 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.nav-lang .nav-lang-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}
.nav-lang .goog-te-gadget {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}
.nav-lang .goog-te-gadget span {
    display: none;
}
.nav-lang .goog-te-combo {
    width: auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 8 10 12 14 8'/%3E%3C/svg%3E") no-repeat right 10px center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 6px 30px 6px 10px;
    font-size: 11px;
    font-weight: 600;
    max-width: 160px;
}
.nav-lang .goog-te-combo option {
    color: #111;
}
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame {
    display: none !important;
}
body {
    top: 0 !important;
}

/* ================================================================
   MAIN HEADER
   ================================================================ */
.main-header {
    background-color: var(--primary);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.3);
    z-index: 1030;
    position: relative;
}
.main-header .navbar {
    padding: 14px 0;
}
.main-header .navbar-nav {
    gap: 4px;
}
.navbar-brand .logo-text {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.navbar-brand .logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--logo-bg, #ffffff);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2);
}
.navbar-brand:hover .logo-text {
    color: var(--accent);
}
.navbar-brand .logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 10px;
    background: var(--logo-bg, #ffffff);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2);
}
.navbar-brand .logo-img {
    height: 34px;
    width: auto;
    display: block;
}
.main-header .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.2px;
    white-space: nowrap;
}
.main-header .nav-link:hover,
.main-header .nav-link.active {
    color: var(--white);
}
.main-header .nav-link.active:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    border-radius: 2px;
}
.main-header .nav-link.dropdown-toggle::after {
    content: none !important;
    display: none !important;
}
.main-header .nav-link.dropdown-toggle::before {
    content: none !important;
    display: none !important;
}
.main-header .dropdown-menu {
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    padding: 8px 0;
    margin-top: 10px;
    animation: fadeInDown 0.2s ease;
}
.main-header .dropdown-item {
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-700);
    transition: var(--transition-fast);
}
.main-header .dropdown-item:hover {
    background-color: var(--accent-light);
    color: var(--accent);
}
.main-header .dropdown-item.dropdown-subitem {
    padding-left: 32px;
    font-size: 12.5px;
    color: var(--gray-600);
    position: relative;
}
.main-header .dropdown-item.dropdown-subitem::before {
    content: '';
    display: none;
}

.main-header .dropdown-toggle::after {
    display: none;
}
.main-header .dropdown-toggle::before {
    display: none;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Nav Icons */
.nav-icon-btn {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 18px;
    padding: 6px 10px;
    position: relative;
    transition: var(--transition-fast);
}
.nav-icon-btn:hover {
    color: var(--white) !important;
    transform: translateY(-1px);
}
.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(249, 115, 22, 0.4);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Search Form */
.search-form .form-control {
    border-radius: 25px 0 0 25px;
    border: none;
    font-size: 13px;
    padding: 9px 18px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 200px;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.search-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.45);
}
.search-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.18);
    box-shadow: none;
    width: 260px;
    color: var(--white);
}
.search-form .btn-search {
    border-radius: 0 25px 25px 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--white);
    border: none;
    padding: 9px 16px;
    transition: var(--transition-fast);
}
.search-form .btn-search:hover {
    background: linear-gradient(135deg, var(--accent-hover), #c2410c);
}

/* Navbar Toggler */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.2);
    padding: 6px 10px;
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.25);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
    padding: 110px 0;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.02" d="M0,96L48,112C96,128,192,160,288,170.7C384,181,480,171,576,149.3C672,128,768,96,864,101.3C960,107,1056,149,1152,165.3C1248,181,1344,171,1392,165.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center;
    background-size: cover;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--white);
    padding: 7px 22px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}
.hero-title {
    color: var(--white);
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}
.hero-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 520px;
}
.hero-actions .btn {
    padding: 14px 34px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
}
.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: transparent;
}
.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

/* ================================================================
   FEATURES BAND
   ================================================================ */
.features-band {
    background-color: var(--white);
    padding: 28px 0;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 10;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    padding: 8px 0;
}
.feature-item i {
    font-size: 28px;
    color: var(--accent);
    flex-shrink: 0;
}
.feature-item h6 {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}
.feature-item p {
    margin-bottom: 0;
    font-size: 12px;
    color: var(--gray-500);
}

/* ================================================================
   SECTION HEADERS
   ================================================================ */
.section-header {
    margin-bottom: 48px;
}
.section-tag {
    display: inline-block;
    background-color: var(--accent-light);
    color: var(--accent);
    padding: 5px 18px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
}
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.section-desc {
    font-size: 15px;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ================================================================
   CATEGORY CARDS
   ================================================================ */
.category-card {
    display: block;
    text-decoration: none;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}
.category-card-inner {
    position: relative;
    height: 260px;
    overflow: hidden;
}
.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.category-card:hover .category-img {
    transform: scale(1.08);
}
.category-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: rgba(255, 255, 255, 0.15);
}
.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.85) 0%, transparent 100%);
    color: var(--white);
}
.category-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}
.category-count {
    font-size: 13px;
    opacity: 0.75;
    display: block;
    margin-bottom: 10px;
}
.category-btn {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
}
.category-card:hover .category-btn {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   PRODUCT CARDS
   ================================================================ */
.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
}
.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}
.product-card-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background-color: var(--gray-50);
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-card-image img {
    transform: scale(1.06);
}
.product-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-50);
    color: var(--gray-300);
    font-size: 48px;
}
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: var(--border-radius-sm);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 0.3px;
}
.badge-sale {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--white);
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}
.badge-new {
    background: linear-gradient(135deg, var(--success), #059669);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}
.badge-out {
    background-color: var(--gray-700);
    color: var(--white);
}
.product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.15), transparent);
    transition: bottom 0.3s ease;
    z-index: 3;
}
.product-card:hover .product-actions {
    bottom: 0;
}
.btn-product-action {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.btn-product-action:hover {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
}
.product-card-body {
    padding: 18px;
}
.product-category {
    font-size: 11px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}
.product-title {
    font-size: 15px;
    font-weight: 600;
    margin: 8px 0 10px;
    line-height: 1.4;
}
.product-title a {
    color: var(--primary);
}
.product-title a:hover {
    color: var(--accent);
}
.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}
.price-old {
    font-size: 13px;
    color: var(--gray-400);
    text-decoration: line-through;
}
.price-current {
    font-size: 17px;
    font-weight: 700;
    color: var(--accent);
}

/* List View */
.products-grid.list-view .product-col {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
}
.product-card-list {
    display: flex;
    flex-direction: row;
}
.product-card-list .product-card-image {
    width: 220px;
    min-width: 220px;
    height: 200px;
}
.product-card-list .product-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.product-desc-list {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    color: var(--white);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}
.cta-desc {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 28px;
}
.cta-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.cta-feature-item i {
    font-size: 18px;
    color: var(--accent);
}
.cta-stats {
    width: 100%;
}
.stat-item {
    text-align: center;
    padding: 28px 20px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
}
.stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
}
.stat-number {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 13px;
    opacity: 0.65;
    font-weight: 500;
}

/* ================================================================
   NEWSLETTER
   ================================================================ */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 45px 0;
    position: relative;
    overflow: hidden;
}
.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.07) 0%, transparent 70%);
    border-radius: 50%;
}
.newsletter-title {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}
.newsletter-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}
.newsletter-form .form-control {
    border-radius: 25px 0 0 25px;
    border: none;
    padding: 12px 22px;
    font-size: 14px;
}
.newsletter-form .form-control:focus {
    box-shadow: none;
}
.newsletter-form .btn {
    border-radius: 0 25px 25px 0;
    padding: 12px 26px;
    font-weight: 600;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.75);
    padding-top: 56px;
}
.footer-brand {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-about {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 22px;
    opacity: 0.7;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    margin-right: 8px;
    transition: var(--transition);
    font-size: 15px;
}
.footer-social a:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
    color: var(--white);
}
.footer-widget-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}
.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    border-radius: 2px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    transition: var(--transition-fast);
    display: inline-block;
}
.footer-links a:hover {
    color: var(--accent);
    padding-left: 6px;
}
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 13px;
}
.footer-contact li i {
    color: var(--accent);
    width: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
}
.footer-contact a:hover {
    color: var(--accent);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    margin-top: 36px;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}
.footer-payment-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    margin-top: 30px;
}
.payment-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.payment-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
}
.payment-icons i {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.35);
    transition: var(--transition-fast);
}
.payment-icons i:hover {
    color: rgba(255, 255, 255, 0.7);
}
.footer-credits {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
}
.footer-credit-link {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
a.footer-credit-link:hover {
    color: var(--accent);
}
}

/* ================================================================
   BREADCRUMB
   ================================================================ */
.breadcrumb-section {
    background-color: var(--gray-50);
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
}
.breadcrumb {
    font-size: 13px;
    margin-bottom: 0;
}
.breadcrumb-item a {
    color: var(--gray-500);
}
.breadcrumb-item a:hover {
    color: var(--accent);
}
.breadcrumb-item.active {
    color: var(--primary);
    font-weight: 500;
}

/* ================================================================
   PAGE HERO
   ================================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 55px 0;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.page-hero-title {
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}
.page-hero-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    position: relative;
    z-index: 1;
}

/* ================================================================
   PAGE TITLE
   ================================================================ */
.page-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.2px;
}

/* ================================================================
   PRODUCTS TOOLBAR
   ================================================================ */
.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
    flex-wrap: wrap;
    gap: 10px;
}
.toolbar-left {
    display: flex;
    align-items: center;
}
.toolbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.results-count {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
}
.sort-select .form-select {
    font-size: 13px;
    min-width: 200px;
    border-radius: 8px;
    border-color: var(--gray-200);
    color: var(--gray-700);
}
.sort-select .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}
.view-toggle .btn {
    padding: 6px 12px;
    font-size: 14px;
    color: var(--gray-500);
    border-color: var(--gray-200);
}
.view-toggle .btn:hover,
.view-toggle .btn.active {
    color: var(--accent);
    border-color: var(--accent);
    background-color: var(--accent-light);
}

/* ================================================================
   FILTER SIDEBAR
   ================================================================ */
.filter-sidebar {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 22px;
}
.filter-header {
    padding-bottom: 14px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}
.filter-header h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}
.filter-group {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--gray-100);
}
.filter-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}
.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.filter-list li {
    margin-bottom: 4px;
}
.filter-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 10px;
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    color: var(--gray-600);
    transition: var(--transition-fast);
}
.filter-list a:hover,
.filter-list a.active {
    background-color: var(--accent-light);
    color: var(--accent);
}
.filter-list .category-child a {
    padding-left: 22px;
    font-size: 12.5px;
    color: var(--gray-500);
    position: relative;
}
.filter-list .category-child a::before {
    content: '•';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 12px;
}
.filter-list .category-child .badge {
    font-size: 10px;
}
.filter-sublist {
    list-style: none;
    padding-left: 14px;
    margin: 6px 0 8px;
}
.filter-sublist li {
    margin-bottom: 4px;
}
.filter-sublist a {
    display: block;
    padding: 6px 10px;
    border-radius: var(--border-radius-sm);
    font-size: 12.5px;
    color: var(--gray-600);
    background: rgba(15, 23, 42, 0.02);
}
.filter-sublist a:hover,
.filter-sublist a.active {
    background-color: var(--accent-light);
    color: var(--accent);
}
.filter-list .badge {
    font-size: 10px;
}
.size-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.size-filter-label {
    cursor: pointer;
}
.size-filter-label input {
    display: none;
}
.size-filter-label span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 38px;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-sm);
    font-size: 12px;
    font-weight: 500;
    padding: 0 8px;
    transition: var(--transition-fast);
    color: var(--gray-700);
}
.size-filter-label span:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.size-filter-label.active span,
.size-filter-label input:checked + span {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--white);
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.25);
}
.size-clear span {
    color: var(--gray-400);
}

/* ================================================================
   PRODUCT DETAIL
   ================================================================ */
.product-gallery {
    position: sticky;
    top: 100px;
}
.gallery-main {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background-color: var(--gray-50);
    margin-bottom: 12px;
}
.gallery-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.product-no-image-large {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-50);
    color: var(--gray-300);
    font-size: 96px;
}
.gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}
.gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    flex-shrink: 0;
    opacity: 0.7;
}
.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--accent);
    opacity: 1;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-detail-category {
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}
.product-detail-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin: 8px 0 14px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}
.product-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    font-size: 13px;
    color: var(--gray-500);
}
.product-detail-price {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.price-old-lg {
    font-size: 20px;
    color: var(--gray-400);
    text-decoration: line-through;
}
.price-current-lg {
    font-size: 30px;
    font-weight: 800;
    color: var(--accent);
}
.discount-badge {
    background-color: var(--success-light);
    color: var(--success);
    padding: 5px 14px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
}
.product-short-desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Options */
.option-group {
    margin-bottom: 18px;
}
.option-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}
.size-options,
.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.size-option input,
.color-option input {
    display: none;
}
.size-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 46px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    padding: 0 14px;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--gray-700);
}
.size-option input:checked + .size-box {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--white);
    box-shadow: 0 3px 10px rgba(249, 115, 22, 0.25);
}
.size-box:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.color-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 46px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    padding: 0 14px;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--gray-700);
}
.color-option input:checked + .color-box {
    border-color: var(--accent);
    background-color: var(--accent-light);
    color: var(--accent);
    font-weight: 600;
}
.color-box:hover {
    border-color: var(--accent);
}

/* Quantity Selector */
.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    overflow: hidden;
}
.qty-btn {
    width: 42px;
    height: 42px;
    border: none;
    background: var(--gray-50);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition-fast);
    color: var(--gray-600);
}
.qty-btn:hover {
    background: var(--accent-light);
    color: var(--accent);
}
.qty-input {
    width: 54px;
    height: 42px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--gray-300);
    border-right: 1px solid var(--gray-300);
    font-size: 14px;
    font-weight: 600;
    background: var(--white);
    color: var(--primary);
}
.quantity-selector-sm .qty-btn {
    width: 32px;
    height: 32px;
}
.quantity-selector-sm .qty-input {
    width: 42px;
    height: 32px;
    font-size: 13px;
}

.product-detail-actions {
    display: flex;
    gap: 12px;
}
.product-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-600);
}
.benefit-item i {
    color: var(--success);
    width: 20px;
}

/* Product Tabs */
.product-tabs .nav-tabs {
    border-bottom: 2px solid var(--gray-200);
}
.product-tabs .nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    border: none;
    padding: 12px 24px;
    transition: var(--transition-fast);
}
.product-tabs .nav-link.active {
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
    background: none;
}
.product-tabs .nav-link:hover {
    color: var(--accent);
    border-color: transparent;
}
.tab-body {
    padding: 24px 0;
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-600);
}
.specs-table td {
    font-size: 13px;
    padding: 10px 14px;
}
.specs-table td:first-child {
    width: 180px;
    color: var(--gray-500);
    font-weight: 500;
}

/* ================================================================
   CART
   ================================================================ */
.empty-cart i {
    color: var(--gray-300);
}
.free-shipping-bar {
    padding: 14px 18px;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
}
.free-shipping-bar .progress {
    background-color: var(--gray-200);
    border-radius: 25px;
    height: 8px;
}
.free-shipping-bar .bg-accent {
    background: linear-gradient(90deg, var(--accent), var(--accent-hover)) !important;
    border-radius: 25px;
}
.cart-items-container {
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    overflow: hidden;
}
.cart-header {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    background-color: var(--gray-50);
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.cart-item {
    display: flex;
    align-items: center;
    padding: 18px;
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition-fast);
}
.cart-item:last-child {
    border-bottom: none;
}
.cart-item:hover {
    background-color: var(--gray-50);
}
.cart-col-product { flex: 4; }
.cart-col-price { flex: 2; text-align: center; }
.cart-col-qty { flex: 2; text-align: center; display: flex; justify-content: center; }
.cart-col-total { flex: 2; text-align: center; font-weight: 700; color: var(--primary); }
.cart-col-remove { flex: 1; text-align: center; }

.cart-product-info {
    display: flex;
    align-items: center;
    gap: 16px;
}
.cart-product-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gray-50);
    display: block;
    border: 1px solid var(--gray-200);
}
.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 24px;
}
.cart-product-details {
    flex: 1;
    min-width: 0;
}
.cart-product-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}
.cart-product-name a {
    color: var(--primary);
}
.cart-product-name a:hover {
    color: var(--accent);
}
.cart-product-variant {
    font-size: 12px;
    color: var(--gray-400);
    margin-bottom: 0;
}
.cart-product-variant span {
    margin-right: 8px;
}
.price-old-sm {
    font-size: 12px;
    color: var(--gray-400);
    text-decoration: line-through;
    display: block;
}
.price-current-sm {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}
.cart-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-400);
    margin-right: 6px;
}
.cart-bottom-actions {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.btn-remove-item {
    border-radius: 50%;
    width: 34px;
    height: 34px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    border: 1px solid var(--gray-200);
    background: var(--white);
    transition: var(--transition-fast);
}
.btn-remove-item:hover {
    color: var(--danger);
    border-color: var(--danger);
    background-color: rgba(239, 68, 68, 0.05);
}

/* ================================================================
   ORDER SUMMARY
   ================================================================ */
.order-summary-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 26px;
    box-shadow: var(--shadow-sm);
}
.sticky-summary {
    position: sticky;
    top: 100px;
}
.summary-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gray-200);
}
.coupon-section .applied-coupon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background-color: var(--success-light);
    border-radius: var(--border-radius-sm);
}
.summary-products {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--gray-200);
    max-height: 300px;
    overflow-y: auto;
}
.summary-product-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 0;
    gap: 10px;
}
.summary-product-name {
    font-size: 13px;
    font-weight: 500;
    display: block;
    color: var(--gray-700);
}
.summary-product-price {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    color: var(--primary);
}
.summary-lines {
    margin-bottom: 12px;
}
.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    font-size: 14px;
    color: var(--gray-500);
}
.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 2px solid var(--primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

/* ================================================================
   CHECKOUT
   ================================================================ */
.checkout-steps {
    padding: 28px 0;
    background-color: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}
.steps-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}
.step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 28px;
    position: relative;
    opacity: 0.35;
    transition: var(--transition);
}
.step.active,
.step.completed {
    opacity: 1;
}
.step-number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--gray-400);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
}
.step.active .step-number {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    box-shadow: 0 3px 10px rgba(249, 115, 22, 0.3);
}
.step.completed .step-number {
    background: linear-gradient(135deg, var(--success), #059669);
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3);
}
.step-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
}
.step + .step::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    width: 48px;
    height: 2px;
    background: var(--gray-300);
    border-radius: 2px;
}
.step.completed + .step::before,
.step.active + .step::before {
    background: linear-gradient(90deg, var(--success), var(--accent));
}
.checkout-section {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 28px;
    margin-bottom: 22px;
}
.checkout-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.payment-method-option {
    cursor: pointer;
}
.payment-method-option input {
    display: none;
}
.payment-method-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    transition: var(--transition);
}
.payment-method-option input:checked + .payment-method-box {
    border-color: var(--accent);
    background-color: var(--accent-light);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.08);
}
.payment-method-box:hover {
    border-color: var(--accent);
}
.payment-method-box i {
    font-size: 24px;
    color: var(--primary);
    width: 32px;
}
.payment-method-box strong {
    display: block;
    font-size: 14px;
    color: var(--primary);
}
.payment-method-box small {
    color: var(--gray-400);
    font-size: 12px;
}
.bank-info-box {
    padding: 16px;
    background-color: var(--gray-50);
    border-radius: var(--border-radius);
    margin-top: 12px;
    font-size: 13px;
    border: 1px solid var(--gray-200);
}
.checkout-terms a {
    color: var(--accent);
    text-decoration: underline;
    font-weight: 500;
}
.checkout-terms a:hover {
    color: var(--accent-hover);
}

/* ================================================================
   ORDER COMPLETE
   ================================================================ */
.order-success-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
}
.success-icon {
    font-size: 76px;
    color: var(--success);
    margin-bottom: 24px;
    display: block;
}
.success-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}
.success-desc {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 28px;
    line-height: 1.7;
}
.order-number-box {
    display: inline-block;
    background: var(--gray-50);
    padding: 16px 36px;
    border-radius: var(--border-radius);
    border: 2px dashed var(--gray-300);
}
.order-number-label {
    display: block;
    font-size: 11px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    font-weight: 600;
}
.order-number-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 3px;
}
.order-detail-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 32px;
}
.order-detail-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gray-200);
}
.detail-group {
    margin-bottom: 8px;
}
.detail-group h6 {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}
.order-totals {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--gray-200);
}
.total-line {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    font-size: 14px;
    color: var(--gray-500);
}
.total-grand {
    padding-top: 14px;
    border-top: 2px solid var(--primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-info-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}
.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
    transform: translateY(-2px);
}
.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 14px;
    transition: var(--transition);
}
.contact-info-card:hover .contact-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--white);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}
.contact-info-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}
.contact-info-card p {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 0;
}
.contact-info-card a {
    color: var(--gray-500);
}
.contact-info-card a:hover {
    color: var(--accent);
}
.contact-form-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 32px;
}
/* Contact layout tighten */
.contact-page .contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.contact-page .contact-info-card {
    padding: 18px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.contact-page .contact-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
    margin: 0;
}
.contact-page .contact-info-card h5 {
    margin-bottom: 2px;
}
.contact-page .contact-info-card p,
.contact-page .contact-info-card a {
    font-size: 12.5px;
}

/* ================================================================
   ABOUT
   ================================================================ */
.about-image-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 520px;
    margin: 0 auto;
}
.about-image-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.12);
    font-size: 96px;
    position: relative;
    overflow: hidden;
}
.about-image-placeholder::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.about-image-placeholder span {
    font-size: 28px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 16px;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}
.about-content {
    padding-left: 20px;
}
.about-page .row {
    display: flex;
    flex-wrap: wrap;
}
.about-page .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
}
.about-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}
.about-content p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 14px;
}
.vision-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 32px;
    height: 100%;
    transition: var(--transition);
}
.vision-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
    transform: translateY(-3px);
}
.vision-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    transition: var(--transition);
}
.vision-card:hover .vision-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--white);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}
.vision-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.vision-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.8;
}
.value-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 32px 22px;
    height: 100%;
    transition: var(--transition);
}
.value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--accent);
}
.value-icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 18px;
    transition: var(--transition);
}
.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--white);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
    transform: scale(1.05);
}
.value-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.value-card p {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 0;
    line-height: 1.7;
}
.about-stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}
.about-stats-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.about-stat {
    padding: 24px;
    text-align: center;
}
.about-stat-number {
    display: block;
    font-size: 44px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
}
.about-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}
.about-page .section-padding {
    position: relative;
    z-index: 1;
}
.about-page .about-stats-section .container {
    position: relative;
    z-index: 1;
}
.about-page .about-stats-section .about-stat {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.about-page .section-padding + .section-padding {
    margin-top: 24px;
}
.about-cta {
    margin-top: 12px;
    border-top: 1px solid var(--gray-200);
}

/* ================================================================
   TOAST NOTIFICATIONS
   ================================================================ */
.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.custom-toast {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    animation: slideInRight 0.3s ease forwards;
    border-left: 4px solid var(--gray-400);
}
.custom-toast.toast-success {
    border-left-color: var(--success);
}
.custom-toast.toast-error {
    border-left-color: var(--danger);
}
.custom-toast.toast-warning {
    border-left-color: var(--warning);
}
.custom-toast .toast-icon {
    font-size: 20px;
    flex-shrink: 0;
}
.custom-toast.toast-success .toast-icon { color: var(--success); }
.custom-toast.toast-error .toast-icon { color: var(--danger); }
.custom-toast.toast-warning .toast-icon { color: var(--warning); }
.custom-toast .toast-message {
    font-size: 13px;
    flex: 1;
    color: var(--body-color);
    font-weight: 500;
}
.custom-toast .toast-close {
    cursor: pointer;
    color: var(--gray-400);
    font-size: 16px;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    transition: var(--transition-fast);
}
.custom-toast .toast-close:hover {
    color: var(--gray-700);
}
.custom-toast.removing {
    animation: fadeOutRight 0.3s ease forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes fadeOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(30px);
    }
}

/* ================================================================
   FLASH MESSAGES (Bootstrap Alerts)
   ================================================================ */
.alert {
    border-radius: var(--border-radius);
    font-size: 14px;
    border: none;
    box-shadow: var(--shadow-sm);
}

/* ================================================================
   FORM STYLING (Global)
   ================================================================ */
.form-control,
.form-select {
    border-radius: 8px;
    border-color: var(--gray-300);
    font-size: 14px;
    padding: 10px 14px;
    transition: var(--transition-fast);
    color: var(--gray-700);
}
.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}
.form-label {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 14px;
    margin-bottom: 6px;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 38px;
    }
    .hero-section {
        padding: 70px 0;
    }
    .section-padding {
        padding: 48px 0;
    }
    .product-card-list {
        flex-direction: column;
    }
    .product-card-list .product-card-image {
        width: 100%;
        height: 200px;
    }
    .about-content {
        padding-left: 0;
        margin-top: 24px;
    }
    .filter-sidebar {
        margin-bottom: 24px;
    }
    .section-title {
        font-size: 28px;
    }
    .cta-title {
        font-size: 30px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 30px;
    }
    .hero-desc {
        font-size: 14px;
    }
    .hero-actions .btn {
        padding: 10px 22px;
        font-size: 13px;
    }
    .section-title {
        font-size: 24px;
    }
    .products-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .cart-item {
        flex-wrap: wrap;
        gap: 12px;
    }
    .cart-col-product { flex: 0 0 100%; }
    .cart-col-price,
    .cart-col-qty,
    .cart-col-total,
    .cart-col-remove {
        flex: 1;
    }
    .gallery-main img {
        height: 350px;
    }
    .product-detail-title {
        font-size: 22px;
    }
    .price-current-lg {
        font-size: 24px;
    }
    .step-text {
        display: none;
    }
    .step {
        padding: 8px 14px;
    }
    .cta-title {
        font-size: 26px;
    }
    .category-card-inner {
        height: 190px;
    }
    .product-card-image {
        height: 220px;
    }
    .about-image-placeholder {
        height: 280px;
        font-size: 64px;
    }
    .order-success-card {
        padding: 32px 20px;
    }
    .checkout-section {
        padding: 20px;
    }
}

@media (max-width: 575.98px) {
    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .cart-product-image {
        width: 60px;
        height: 60px;
    }
    .hero-title {
        font-size: 26px;
    }
    .page-hero-title {
        font-size: 26px;
    }
    .section-header {
        margin-bottom: 32px;
    }
    .product-card-body {
        padding: 14px;
    }
}

/* ================================================================
   PREMIUM ANIMATIONS & EFFECTS
   ================================================================ */

/* --- Scroll Animations --- */
.animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
html.animations-ready .animate-on-scroll {
    opacity: 0;
}
html.animations-ready .animate-on-scroll.fade-up { transform: translateY(30px); }
html.animations-ready .animate-on-scroll.fade-down { transform: translateY(-30px); }
html.animations-ready .animate-on-scroll.fade-left { transform: translateX(-24px); }
html.animations-ready .animate-on-scroll.fade-right { transform: translateX(24px); }
html.animations-ready .animate-on-scroll.zoom-in { transform: scale(0.85); }
html.animations-ready .animate-on-scroll.visible,
html.animations-ready .animate-on-scroll.animated {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s !important; }
.stagger-2 { transition-delay: 0.2s !important; }
.stagger-3 { transition-delay: 0.3s !important; }
.stagger-4 { transition-delay: 0.4s !important; }
.stagger-5 { transition-delay: 0.5s !important; }
.stagger-6 { transition-delay: 0.6s !important; }

/* --- Hero Carousel Premium --- */
#heroCarousel .carousel-item {
    min-height: 600px;
    position: relative;
}
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 56px;
    height: 56px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0;
    margin: 0 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-section:hover #heroCarousel .carousel-control-prev,
.hero-section:hover #heroCarousel .carousel-control-next {
    opacity: 1;
}
#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
    background: rgba(249, 115, 22, 0.8);
    border-color: rgba(249, 115, 22, 0.8);
    transform: translateY(-50%) scale(1.1);
}
#heroCarousel .carousel-indicators {
    bottom: 28px;
}
#heroCarousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    opacity: 0.6;
    transition: all 0.4s ease;
    margin: 0 4px;
}
#heroCarousel .carousel-indicators .active {
    background: var(--accent);
    border-color: var(--accent);
    opacity: 1;
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.5);
}

/* Hero Content Entrance */
.hero-content {
    animation: heroFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
@keyframes heroFadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-title {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero-badge {
    animation: heroBadgePulse 2s ease-in-out infinite;
}
@keyframes heroBadgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(249, 115, 22, 0); }
}

/* --- Product Card Premium Effects --- */
.product-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}
.product-card:hover::after {
    left: 100%;
}
.product-card-image img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-card-image img {
    transform: scale(1.08);
}
.product-actions {
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}
.btn-product-action {
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-product-action:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}
.product-badge {
    animation: badgeSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes badgeSlideIn {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
.badge-sale {
    animation: badgeSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both, salePulse 2s ease-in-out 0.4s infinite;
}
@keyframes salePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(249, 115, 22, 0); }
}

/* --- Category Card Premium --- */
.category-card {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.category-card:hover {
    transform: translateY(-10px) scale(1.02);
}
.category-card-inner {
    overflow: hidden;
}
.category-card .category-img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.category-card:hover .category-img {
    transform: scale(1.12);
}
.category-overlay {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.5) 50%, transparent 100%);
}
.category-btn {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.category-card:hover .category-btn {
    transform: translateY(0);
    opacity: 1;
}
.category-btn i {
    transition: transform 0.3s ease;
}
.category-card:hover .category-btn i {
    transform: translateX(4px);
}

/* --- Feature Items Animation --- */
.feature-item {
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.feature-item:hover {
    transform: translateY(-4px);
}
.feature-item i {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.feature-item:hover i {
    transform: scale(1.2) rotate(-5deg);
    color: var(--accent);
}

/* --- Section Headers Animation --- */
.section-tag {
    position: relative;
    overflow: hidden;
}
.section-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}
.animate-on-scroll.visible .section-tag::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* --- CTA Stats Counter Animation --- */
.stat-item {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.stat-item:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.stat-number {
    background: linear-gradient(135deg, #fff, var(--accent-light, #fed7aa));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Testimonial Cards --- */
.card {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1) !important;
}

/* --- Button Premium Effects --- */
.btn-accent {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    z-index: -1;
    transition: left 0.5s ease;
}
.btn-accent:hover::before {
    left: 100%;
}
.btn-outline-dark {
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}
.btn-outline-dark:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.25);
}

/* --- Footer Premium --- */
.site-footer {
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--warning), var(--accent));
    background-size: 200% 100%;
    animation: footerGradient 4s linear infinite;
}
@keyframes footerGradient {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}
.footer-links li a {
    position: relative;
    transition: all 0.3s ease;
}
.footer-links li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}
.footer-links li a:hover::before {
    width: 100%;
}
.footer-links li a:hover {
    padding-left: 6px;
    color: var(--accent) !important;
}

/* --- Smooth Page Load Animation --- */
@keyframes pageLoad {
    from { opacity: 0; }
    to { opacity: 1; }
}
body {
    animation: pageLoad 0.5s ease;
}

/* --- Floating Elements --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes floatRotate {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}

/* --- Loading Shimmer for Images --- */
.product-card-image,
.category-card-inner {
    position: relative;
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-50) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease infinite;
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.product-card-image img,
.category-card-inner img {
    position: relative;
    z-index: 1;
}

/* --- Navbar Premium Scroll Effect --- */
.main-header {
    transition: all 0.35s ease;
}
.main-header.scrolled {
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.4);
}
.main-header .nav-link {
    position: relative;
}
.main-header .nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
}
.main-header .nav-link:not(.dropdown-toggle):hover::after,
.main-header .nav-link:not(.dropdown-toggle).active::after {
    width: 70%;
    opacity: 1;
}
/* Navbar alt çizgi/dot görünümünü tamamen kaldır */
.main-header .nav-link::after,
.main-header .nav-link::before,
.main-header .nav-link.dropdown-toggle::after,
.main-header .nav-link.dropdown-toggle::before {
    content: none !important;
    display: none !important;
}

/* --- Cart Badge Animation --- */
.cart-badge {
    animation: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes cartBounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.4); }
    50% { transform: scale(0.9); }
    70% { transform: scale(1.15); }
    100% { transform: scale(1); }
}
.cart-badge.bounce {
    animation: cartBounce 0.5s ease;
}

/* --- WhatsApp Float Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 28px;
    text-decoration: none;
    z-index: 1050;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: whatsappPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.12);
    color: #fff;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}
@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.3);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

/* --- Product Detail Premium --- */
.gallery-main {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}
.gallery-main img {
    transition: transform 0.4s ease;
}
.gallery-main:hover img {
    transform: scale(1.05);
}
.gallery-thumb {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gallery-thumb:hover,
.gallery-thumb.active {
    transform: scale(1.08);
    border-color: var(--accent);
}
.size-box {
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.size-box:hover {
    transform: translateY(-2px);
}
.size-box.active {
    animation: sizeBoxSelect 0.3s ease;
}
@keyframes sizeBoxSelect {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* --- Breadcrumb Premium --- */
.breadcrumb-section {
    position: relative;
    overflow: hidden;
}
.breadcrumb-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
}

/* --- Newsletter Section Premium --- */
.newsletter-section {
    position: relative;
    overflow: hidden;
}
.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
    animation: newsletterOrb 20s linear infinite;
    pointer-events: none;
}
@keyframes newsletterOrb {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- Price Animations --- */
.price-current {
    position: relative;
}
.price-old {
    position: relative;
}
.price-old::after {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    top: 50%;
    height: 2px;
    background: var(--danger);
    transform: scaleX(0);
    transform-origin: left;
    animation: strikethrough 0.5s 0.3s ease forwards;
}
@keyframes strikethrough {
    to { transform: scaleX(1); }
}

/* --- Tooltip Effect --- */
[data-tooltip] {
    position: relative;
}
[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    padding: 6px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
    z-index: 100;
}
[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* --- Checkout Steps Premium --- */
.checkout-steps .step {
    transition: all 0.3s ease;
}
.checkout-steps .step.active .step-number {
    animation: stepPulse 1s ease;
}
@keyframes stepPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
    50% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(249, 115, 22, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

/* --- Order Success Animation --- */
.success-icon {
    animation: successBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes successBounce {
    from { opacity: 0; transform: scale(0.3); }
    to { opacity: 1; transform: scale(1); }
}

/* --- Contact Cards --- */
.contact-info-card {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.contact-info-card:hover {
    transform: translateY(-8px);
}
.contact-icon {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.contact-info-card:hover .contact-icon {
    transform: scale(1.15) rotate(-5deg);
}

/* --- About Page Animations --- */
.vision-card,
.value-card {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.vision-card:hover,
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.about-stat {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.about-stat:hover {
    transform: translateY(-4px);
}
.about-stat-number {
    background: linear-gradient(135deg, var(--accent), var(--warning));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Smooth Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 4px;
    transition: background 0.3s;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}
* {
    scrollbar-width: thin;
    scrollbar-color: var(--gray-400) var(--gray-100);
}

/* --- Selection Color --- */
::selection {
    background: rgba(249, 115, 22, 0.2);
    color: var(--primary);
}

/* --- Focus Visible for Accessibility --- */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* --- Prefers Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}
