/* Base styles and typography */
:root {
    --primary-font: 'Inter', sans-serif;
    --primary-color: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #505d6b;
    --border-color: #edf2f7;
    --hover-color: #3498db;
    --search-bg: #f6f8fc;
    --brand-color: #0891b2;
}

body {
    font-family: var(--primary-font);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Floating Background Logos */
.bg-floating-logos {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}
.bg-floating-logos img {
    position: absolute;
    opacity: 0.04;
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    user-select: none;
    -webkit-user-drag: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--primary-font);
    font-weight: 600;
    line-height: 1.3;
}

/* Header styles */
.header-top {
    background-color: #f8fafc;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 400;
    border-bottom: 1px solid var(--border-color);
}

.header-top-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.top-menu-item {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    padding: 2px 0;
}

.top-menu-item:hover {
    color: var(--hover-color);
}

.top-menu-item:hover i {
    color: var(--hover-color);
    transform: translateY(-1px);
}

.top-menu-item i {
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.top-menu-item span {
    font-weight: 500;
    font-size: 12.5px;
    letter-spacing: 0.2px;
}

@media (max-width: 768px) {
    .header-top {
        display: block;
        padding: 0;
        background-color: #f3f9ff;
        border-bottom: 1px solid var(--border-color);
    }

    .header-top .welcome-text {
        display: none;
    }

    .header-top-menu {
        padding: 8px 0;
        justify-content: center;
        gap: 15px;
        background-color: #f3f9ff;
    }

    .top-menu-item {
        font-size: 11px;
    }

    .top-menu-item i {
        font-size: 14px;
    }

    .main-header {
        position: relative;
        padding: 10px 0;
    }

    .main-header .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .main-header .row {
        margin: 0;
        gap: 12px;
    }

    .header-logo {
        display: block;
        text-align: left;
    }

    .header-logo h1 {
        font-size: 18px;
    }

    .header-search {
        max-width: 100%;
        padding: 0;
        margin: 8px 0;
    }

    .header-search .input-group {
        background: var(--search-bg);
        border-radius: 8px;
        padding: 4px 6px;
    }

    .header-search .form-control {
        height: 36px;
        font-size: 14px;
        padding: 6px 12px;
    }

    .btn-search {
        height: 36px;
        width: 36px;
        min-width: 36px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
    }

    .btn-search i {
        font-size: 18px;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-left: auto;
    }

    .header-action-btn {
        padding: 0;
        margin: 0 !important;
    }

    .header-action-btn i {
        font-size: 20px;
    }

    .header-action-btn span {
        display: none;
    }
}

@media (max-width: 480px) {
    .header-top-menu {
        padding: 6px 0;
        gap: 12px;
        background-color: #f3f9ff;
    }

    .top-menu-item {
        font-size: 10px;
    }

    .top-menu-item i {
        font-size: 13px;
    }

    .main-header {
        padding: 8px 0;
    }

    .main-header .row {
        gap: 8px;
    }

    .header-logo h1 {
        font-size: 16px;
    }

    .header-search .form-control {
        height: 34px;
        font-size: 13px;
    }

    .btn-search {
        height: 34px;
        width: 34px;
        min-width: 34px;
    }

    .btn-search i {
        font-size: 16px;
    }

    .header-action-btn i {
        font-size: 18px;
    }

    .header-actions {
        gap: 12px;
    }
}

/* Main Header Styles */
.main-header {
    padding: 20px 0;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
}

.header-logo {
    text-decoration: none;
}

.header-logo h1 {
    color: var(--brand-color);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.header-search {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-search .input-group {
    background: var(--search-bg);
    border-radius: 100px;
    border: 1px solid var(--border-color);
    padding: 4px 6px 4px 20px;
    transition: all 0.3s ease;
}

.header-search .input-group:hover,
.header-search .input-group:focus-within {
    border-color: var(--brand-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-search .form-control {
    border: none;
    background: transparent;
    padding: 8px 5px;
    font-size: 15px;
    color: var(--text-dark);
    height: 40px;
}

.header-search .form-control::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.header-search .form-control:focus {
    box-shadow: none;
}

.btn-search {
    background: var(--search-bg);
    color: var(--text-dark);
    border: none;
    padding: 8px 25px;
    border-radius: 100px;
    font-size: 15px;
    height: 40px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-search i {
    font-size: 22px;
    color: #1e293b;
}

.btn-search:hover {
    background: var(--search-bg);
    color: var(--brand-color);
    transform: translateY(-1px);
}

.btn-search:hover i {
    color: var(--brand-color);
}

.header-actions {
    display: flex;
    align-items: center;
}

.header-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.header-action-btn i {
    font-size: 22px;
}

.header-action-btn:hover {
    color: var(--brand-color);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .main-header {
        padding: 12px 0;
    }

    .header-logo h1 {
        font-size: 20px;
    }

    .header-search {
        padding: 0 10px;
    }
}

/* Category Menu Styles */
.category-dropdown {
    position: relative;
}

.category-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-top: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.category-menu-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    height: 50px;
}

.category-menu {
    position: relative;
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    z-index: 100;
}

.category-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--text-dark);
    border: none;
    padding: 0 20px;
    height: 50px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-menu-btn.active {
    background: #f8fafc;
    color: var(--brand-color);
}

.category-menu-btn.active i {
    color: var(--brand-color);
}

.category-menu-btn i {
    font-size: 20px;
    color: var(--brand-color);
}

.category-menu-btn .badge {
    font-size: 11px;
    padding: 0.25em 0.6em;
    font-weight: 500;
}

.main-nav {
    margin-left: 20px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--brand-color);
}

.nav-list a.active:after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--brand-color);
}

@media (max-width: 991px) {
    .category-menu-wrapper {
        padding: 12px 0;
        gap: 15px;
    }

    .category-menu-btn {
        height: 45px;
        width: auto;
        margin: 0;
        font-size: 13px;
        padding: 0 15px;
    }

    .category-menu-btn i {
        font-size: 18px;
    }

    .main-nav {
        margin-left: 0;
        width: auto;
        flex: 1;
    }

    .nav-list {
        gap: 20px;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 5px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .nav-list::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 768px) {
    .category-menu-wrapper {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 10px 0;
        gap: 12px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .category-menu-wrapper::-webkit-scrollbar {
        display: none;
    }

    .category-menu-btn {
        min-width: auto;
        white-space: nowrap;
        height: 40px;
        font-size: 12px;
    }

    .category-menu-btn i {
        font-size: 16px;
    }

    .nav-list {
        gap: 15px;
    }

    .nav-list a {
        font-size: 13px;
        white-space: nowrap;
    }

    .nav-list a.active:after {
        bottom: -8px;
    }
}

@media (max-width: 480px) {
    .category-menu-wrapper {
        padding: 8px 0;
        gap: 10px;
    }

    .category-menu-btn {
        height: 36px;
        padding: 0 12px;
        font-size: 11px;
    }

    .category-menu-btn i {
        font-size: 15px;
    }

    .category-menu-btn .badge {
        font-size: 10px;
        padding: 0.2em 0.5em;
    }

    .nav-list {
        gap: 12px;
    }

    .nav-list a {
        font-size: 12px;
    }
}

/* Contact Info Styles */
.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 24px;
    border-left: 1px solid var(--border-color);
}

.contact-info i {
    font-size: 24px;
    color: var(--brand-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
}

.contact-number {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-number:hover {
    color: var(--brand-color);
}

@media (max-width: 991px) {
    .contact-info {
        display: none;
    }
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    background: none;
    border: none;
    padding: 8px;
    color: var(--text-dark);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:hover {
    color: var(--brand-color);
}

.mobile-side-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: -2px 0 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    visibility: hidden;
    transform: translateX(100%);
}

.mobile-side-menu.active {
    right: 0;
    visibility: visible;
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--brand-color);
    color: #fff;
}

.mobile-menu-header span {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.close-menu-btn {
    background: none;
    border: none;
    padding: 8px;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-menu-btn:hover {
    background: rgba(255,255,255,0.1);
}

.mobile-nav {
    padding: 12px 0;
    flex: 1;
    overflow-y: auto;
}

.mobile-nav .nav-list {
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav .nav-list li {
    margin: 0;
    padding: 0;
    border: none;
}

.mobile-nav .nav-list a {
    font-size: 15px;
    padding: 14px 20px;
    display: block;
    color: var(--text-dark);
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    text-decoration: none;
    text-align: left;
    width: 100%;
}

.mobile-nav .nav-list a:hover {
    background: #f8fafc;
    color: var(--brand-color);
    border-left-color: var(--brand-color);
}

.mobile-nav .nav-list a.active {
    color: var(--brand-color);
    background: #f1f5f9;
    border-left-color: var(--brand-color);
    font-weight: 500;
}

.mobile-nav .nav-list a.active:after {
    display: none;
}

.mobile-nav .nav-list li + li {
    border: none;
}

.mobile-nav .nav-list li:before,
.mobile-nav .nav-list li:after {
    display: none;
}

.mobile-contact-info {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8fafc;
    margin-top: auto;
}

.mobile-contact-info i {
    font-size: 22px;
    color: var(--brand-color);
    background: #fff;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.mobile-contact-info .contact-details {
    flex: 1;
}

.mobile-contact-info .contact-label {
    font-size: 12px;
    color: var(--text-light);
    display: block;
    margin-bottom: 3px;
}

.mobile-contact-info .contact-number {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    display: block;
}

@media (max-width: 480px) {
    .mobile-side-menu {
        width: 100%;
    }

    .mobile-menu-header {
        padding: 14px 20px;
    }

    .mobile-nav .nav-list a {
        padding: 13px 20px;
        font-size: 14px;
    }

    .mobile-contact-info {
        padding: 16px 20px;
    }

    .mobile-contact-info i {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .category-menu-wrapper {
        justify-content: space-between;
        padding: 10px 0;
    }

    .category-menu-btn {
        font-size: 13px;
        padding: 0 15px;
        height: 40px;
    }

    .category-menu-btn i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .mobile-side-menu {
        width: 280px;
    }

    .category-menu-btn {
        font-size: 12px;
        padding: 0 12px;
        height: 36px;
    }

    .category-menu-btn i {
        font-size: 16px;
    }

    .mobile-menu-btn {
        padding: 6px;
        font-size: 22px;
    }
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Desktop Category Menu Styles */
.category-item {
    position: relative;
}

.category-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    width: 100%;
}

.category-link i:first-child {
    font-size: 20px;
    margin-right: 12px;
    color: var(--brand-color);
    width: 24px;
    text-align: center;
}

.category-link i:last-child {
    margin-left: auto;
    font-size: 18px;
    opacity: 0.5;
}

.category-link:hover {
    background: #f8fafc;
    color: var(--brand-color);
}

.category-link:hover i:last-child {
    opacity: 1;
    transform: translateX(3px);
}

.category-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-top: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.category-dropdown:hover .category-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.category-items {
    display: flex;
    flex-direction: column;
}

/* Mobile Category Styles */
.mobile-category-item a {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.mobile-category-item i:first-child {
    font-size: 20px;
    margin-right: 12px;
    color: var(--brand-color);
    width: 24px;
    text-align: center;
}

.mobile-category-item i:last-child {
    margin-left: auto;
    font-size: 18px;
    opacity: 0.5;
}

.mobile-category-item a:hover {
    background: #f8fafc;
    color: var(--brand-color);
    border-left-color: var(--brand-color);
}

.mobile-category-item a:hover i:last-child {
    opacity: 1;
}

@media (max-width: 991px) {
    .category-dropdown-menu {
        display: none;
    }
}

/* Desktop Category Submenu Styles */
.category-item {
    position: relative;
}

.submenu-wrapper {
    position: absolute;
    left: 100%;
    top: 0;
    width: 800px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.category-item:hover .submenu-wrapper {
    opacity: 1;
    visibility: visible;
}

.submenu {
    display: flex;
    padding: 20px;
}

.submenu-col {
    flex: 1;
    padding: 0 15px;
}

.submenu-col h4 {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.submenu-col ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.submenu-col ul:last-child {
    margin-bottom: 0;
}

.submenu-col ul li a {
    color: #666;
    font-size: 13px;
    line-height: 2;
    display: block;
    transition: color 0.2s ease;
    text-decoration: none;
}

.submenu-col ul li a:hover {
    color: var(--primary-color);
}

@media (max-width: 1200px) {
    .submenu-wrapper {
        width: 600px;
    }
}

@media (max-width: 991px) {
    .submenu-wrapper {
        display: none;
    }
}

/* Mobile Categories Menu */
.mobile-categories-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    transition: all 0.3s ease;
    visibility: hidden;
    transform: translateX(-100%);
    overflow-y: auto;
}

.mobile-categories-menu.active {
    left: 0;
    visibility: visible;
    transform: translateX(0);
}

.mobile-categories-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--brand-color);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 2;
}

.mobile-categories-header span {
    font-size: 16px;
    font-weight: 500;
}

.close-categories-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    padding: 5px;
    cursor: pointer;
}

.mobile-categories-content {
    padding: 15px 0;
}

.mobile-category-item {
    border-bottom: 1px solid var(--border-color);
}

.mobile-category-header {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-category-header i:first-child {
    font-size: 20px;
    margin-right: 12px;
    color: var(--brand-color);
    width: 24px;
    text-align: center;
}

.mobile-category-header i:last-child {
    margin-left: auto;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.mobile-category-header.active i:last-child {
    transform: rotate(90deg);
}

.mobile-subcategories {
    display: none;
    padding: 0 20px 15px;
    background: #f8fafc;
}

.mobile-category-item.active .mobile-subcategories {
    display: block;
}

.mobile-subcategory-group {
    margin-bottom: 20px;
}

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

.mobile-subcategory-group h4 {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    margin: 15px 0 10px;
}

.mobile-subcategory-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-subcategory-group ul li a {
    color: var(--text-light);
    font-size: 13px;
    padding: 8px 0;
    display: block;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-subcategory-group ul li a:hover {
    color: var(--brand-color);
    padding-left: 5px;
}

.mobile-categories-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-categories-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 992px) {
    .mobile-categories-menu,
    .mobile-categories-overlay {
        display: none;
    }
}

/* Story Section Styles */
.story-section {
    padding: 15px 0;
    background: #fff;
    margin-top: 1px;
    border-bottom: 1px solid var(--border-color);
}

.story-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-slider {
    display: flex;
    gap: 12px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 5px 0;
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
}

.story-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 75px;
    max-width: 85px;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.story-item:hover {
    transform: translateY(-2px);
}

.story-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f3f4f6 0%, #fff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.story-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.story-icon i {
    font-size: 24px;
    color: var(--brand-color);
}

.story-title {
    font-size: 12px;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.2;
    font-weight: 500;
    max-width: 80px;
    margin: 0 auto;
}

.story-nav-btn {
    display: none;
}

@media (max-width: 991px) {
    .story-wrapper {
        padding: 0 30px;
    }

    .story-slider {
        justify-content: flex-start;
        gap: 20px;
    }

    .story-item {
        flex: 0 0 auto;
    }

    .story-nav-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid var(--border-color);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    }

    .prev-btn {
        left: -5px;
    }

    .next-btn {
        right: -5px;
    }
}

@media (max-width: 768px) {
    .story-section {
        padding: 10px 0;
    }

    .story-wrapper {
        padding: 0 25px;
    }

    .story-slider {
        gap: 20px;
    }

    .story-item {
        width: 70px;
    }

    .story-circle {
        width: 54px;
        height: 54px;
    }

    .story-icon {
        width: 42px;
        height: 42px;
    }

    .story-icon i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .story-section {
        padding: 8px 0;
    }

    .story-wrapper {
        padding: 0 20px;
    }

    .story-slider {
        gap: 16px;
    }

    .story-item {
        width: 65px;
    }

    .story-circle {
        width: 50px;
        height: 50px;
    }

    .story-icon {
        width: 40px;
        height: 40px;
    }

    .story-icon i {
        font-size: 18px;
    }

    .story-title {
        font-size: 10px;
        max-width: 65px;
        line-height: 1.1;
    }
}

/* Story Item Variants */
.story-coupon .story-circle {
    background: linear-gradient(45deg, #ffebee 0%, #fff 100%);
    border-color: #ffcdd2;
}

.story-coupon .story-icon i {
    color: #e53935;
}

.story-bundle .story-circle {
    background: linear-gradient(45deg, #e8f5e9 0%, #fff 100%);
    border-color: #c8e6c9;
}

.story-bundle .story-icon i {
    color: #43a047;
}

.story-shipping .story-circle {
    background: linear-gradient(45deg, #e3f2fd 0%, #fff 100%);
    border-color: #bbdefb;
}

.story-shipping .story-icon i {
    color: #1e88e5;
}

.story-campaign .story-circle {
    background: linear-gradient(45deg, #fff3e0 0%, #fff 100%);
    border-color: #ffe0b2;
}

.story-campaign .story-icon i {
    color: #fb8c00;
}

.story-flash .story-circle {
    background: linear-gradient(45deg, #f3e5f5 0%, #fff 100%);
    border-color: #e1bee7;
}

.story-flash .story-icon i {
    color: #8e24aa;
}

.story-new .story-circle {
    background: linear-gradient(45deg, #e0f7fa 0%, #fff 100%);
    border-color: #b2ebf2;
}

.story-new .story-icon i {
    color: #00acc1;
}

.story-advantage .story-circle {
    background: linear-gradient(45deg, #fce4ec 0%, #fff 100%);
    border-color: #f8bbd0;
}

.story-advantage .story-icon i {
    color: #d81b60;
}

.story-limited .story-circle {
    background: linear-gradient(45deg, #ede7f6 0%, #fff 100%);
    border-color: #d1c4e9;
}

.story-limited .story-icon i {
    color: #5e35b1;
}

.story-bestseller .story-circle {
    background: linear-gradient(45deg, #fff8e1 0%, #fff 100%);
    border-color: #fff3c4;
}

.story-bestseller .story-icon i {
    color: #ffa000;
}

.story-item:hover .story-circle {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.story-icon {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.story-item:hover .story-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.story-favorite .story-circle {
    background: linear-gradient(45deg, #fce4ec 0%, #fff 100%);
    border-color: #f48fb1;
}

.story-favorite .story-icon i {
    color: #ec407a;
}

/* Category Icon Bar */
.category-bar {
    background: #fff;
    padding: 20px 0 10px;
    border-bottom: 1px solid var(--border-color);
}
.category-bar-scroll {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 5px 0;
}
.category-bar-scroll::-webkit-scrollbar {
    display: none;
}
.category-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    min-width: 90px;
    padding: 8px 4px;
    border-radius: 12px;
    transition: all 0.25s ease;
}
.category-bar-item:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}
.category-bar-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: #fff;
    border: 2.5px solid currentColor;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.category-bar-item:hover .category-bar-icon {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.category-bar-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.3;
    max-width: 90px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.category-bar-item:hover .category-bar-name {
    color: var(--brand-color);
}

@media (max-width: 991px) {
    .category-bar-scroll {
        justify-content: flex-start;
        gap: 8px;
        padding: 5px 10px;
    }
    .category-bar-item {
        min-width: 80px;
    }
    .category-bar-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
    .category-bar-name {
        font-size: 11px;
        max-width: 80px;
    }
}
@media (max-width: 575px) {
    .category-bar {
        padding: 12px 0 6px;
    }
    .category-bar-item {
        min-width: 70px;
        gap: 6px;
        padding: 6px 2px;
    }
    .category-bar-icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
    .category-bar-name {
        font-size: 10px;
        max-width: 70px;
    }
}

/* Main Slider Styles */
.main-slider {
    padding: 20px 0;
    background: #fff;
}

.slider-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 360px;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slider-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    transform: scale(1.05);
}

.slider-item.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    color: #1e293b;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.slider-nav-btn:hover {
    background: #f8fafc;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.slider-dots {
    position: absolute;
    left: 30px;
    bottom: 30px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.dot {
    width: 24px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
    width: 32px;
}

@media (max-width: 991px) {
    .slider-wrapper {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .slider-wrapper {
        height: 280px;
        border-radius: 12px;
    }

    .slider-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .slider-dots {
        left: 20px;
        bottom: 20px;
    }

    .dot {
        width: 20px;
        height: 3px;
    }

    .dot.active {
        width: 28px;
    }
}

@media (max-width: 480px) {
    .slider-wrapper {
        height: 200px;
        border-radius: 8px;
    }

    .slider-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .slider-dots {
        left: 15px;
        bottom: 15px;
        gap: 6px;
    }

    .dot {
        width: 16px;
        height: 2px;
    }

    .dot.active {
        width: 24px;
    }
}

/* Best Sellers Section */
.best-sellers {
    padding: 40px 0;
    background: #fff;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--brand-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.view-all:hover {
    color: var(--text-dark);
}

.view-all i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.view-all:hover i {
    transform: translateX(4px);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #00a67e;
    color: #fff;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    z-index: 1;
}

.product-badge.sale {
    background: #e53935;
}

.product-thumb {
    position: relative;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.product-thumb img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-thumb img {
    transform: scale(1.05);
}

/* Product Logo Thumbnail */
.product-logo-box {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f8f9fb;
    padding: 40px;
    transition: all 0.3s ease;
}
.product-logo-box img {
    max-width: 90px;
    max-height: 90px;
    object-fit: contain;
    transition: all 0.3s ease;
}
.product-card:hover .product-logo-box {
    background: #f0f2f5;
}
.product-card:hover .product-logo-box img {
    transform: scale(1.08);
}

/* Product Detail Page Logo (larger) */
.product-logo-box-lg {
    width: 100%;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #f8f9fb;
    padding: 60px;
    transition: all 0.3s ease;
}
.product-logo-box-lg img {
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.wishlist-btn i {
    font-size: 18px;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.wishlist-btn:hover i {
    color: #e53935;
}

.wishlist-btn.active i {
    color: #e53935;
}

.product-action {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.product-card:hover .product-action {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.action-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.action-btn i {
    font-size: 18px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--brand-color);
}

.action-btn:hover i {
    color: #fff;
}

.product-content {
    padding: 0 5px;
}

.product-title {
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 8px;
    line-height: 1.4;
}

.product-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--brand-color);
}

.product-category {
    margin-bottom: 8px;
}

.product-category a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.product-category a:hover {
    color: var(--brand-color);
}

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

.product-rating i {
    font-size: 14px;
    color: #fbbf24;
}

.product-rating span {
    color: var(--text-light);
    font-size: 13px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.new-price {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
}

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

@media (max-width: 1200px) {
    .product-grid {
        gap: 20px;
    }

    .product-thumb img {
        height: 260px;
    }
    .product-logo-box {
        height: 200px;
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .product-thumb img {
        height: 240px;
    }
    .product-logo-box {
        height: 180px;
        padding: 25px;
    }
    .product-logo-box img {
        max-width: 75px;
        max-height: 75px;
    }
}

@media (max-width: 768px) {
    .best-sellers {
        padding: 30px 0;
    }

    .section-header {
        margin-bottom: 25px;
    }

    .section-title {
        font-size: 22px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-thumb img {
        height: 220px;
    }
    .product-logo-box {
        height: 160px;
        padding: 20px;
    }
    .product-logo-box img {
        max-width: 65px;
        max-height: 65px;
    }
    .product-logo-box-lg {
        height: 260px;
        padding: 40px;
    }
    .product-logo-box-lg img {
        max-width: 110px;
        max-height: 110px;
    }

    .product-title {
        font-size: 14px;
    }

    .new-price {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .best-sellers {
        padding: 25px 0;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 20px;
    }

    .view-all {
        font-size: 14px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-thumb img {
        height: 200px;
    }
    .product-logo-box {
        height: 150px;
        padding: 20px;
    }
    .product-logo-box img {
        max-width: 60px;
        max-height: 60px;
    }
}

/* Features Section */
.features-section {
    padding: 40px 0;
    background: #fff;
    border-top: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item.shipping {
    background-color: #f0fdf4;
}

.feature-item.return {
    background-color: #fff7ed;
}

.feature-item.payment {
    background-color: #f5f3ff;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item.shipping .feature-icon {
    background-color: #dcfce7;
    color: #16a34a;
}

.feature-item.return .feature-icon {
    background-color: #ffedd5;
    color: #ea580c;
}

.feature-item.payment .feature-icon {
    background-color: #ede9fe;
    color: #7c3aed;
}

.feature-icon i {
    font-size: 24px;
}

.feature-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px;
}

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

@media (max-width: 991px) {
    .features-grid {
        gap: 20px;
    }

    .feature-item {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 30px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
    }

    .feature-icon i {
        font-size: 22px;
    }

    .feature-content h3 {
        font-size: 15px;
    }

    .feature-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 25px 0;
    }

    .feature-item {
        padding: 15px;
        gap: 15px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon i {
        font-size: 20px;
    }
}

/* New Arrivals Section */
.new-arrivals {
    padding: 40px 0;
    background: #fff;
    border-top: 1px solid var(--border-color);
}

.new-arrivals .product-badge {
    background: var(--brand-color);
}

@media (max-width: 991px) {
    .new-arrivals {
        padding: 30px 0;
    }
}

@media (max-width: 768px) {
    .new-arrivals {
        padding: 25px 0;
    }
}

@media (max-width: 480px) {
    .new-arrivals {
        padding: 20px 0;
    }
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(90deg, #FFE5E0 0%, #FFD1C7 100%);
    padding: 40px 0;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bulten.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.15;
}

.newsletter-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.newsletter-title {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 24px;
}

.newsletter-form .input-group {
    display: flex;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    flex: 1;
    border: none;
    padding: 15px 25px;
    font-size: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.newsletter-form .form-control:focus {
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    outline: none;
}

.newsletter-form .btn-subscribe {
    background: #f15b67;
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form .btn-subscribe:hover {
    background: #e64553;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(241, 91, 103, 0.2);
}

@media (max-width: 768px) {
    .newsletter-section {
        margin: 40px 0;
        padding: 32px 16px;
    }

    .newsletter-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .newsletter-form .input-group {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-form .form-control {
        width: 100%;
        padding: 12px 20px;
    }

    .newsletter-form .btn-subscribe {
        width: 100%;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .newsletter-section {
        margin: 30px 0;
        padding: 24px 16px;
    }

    .newsletter-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
}

/* Opportunity Products Section */
.opportunity-products {
    padding: 40px 0;
    background: #fff;
    border-top: 1px solid var(--border-color);
}

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

.opportunity-products .product-badge.sale {
    background: #e53935;
}

@media (max-width: 991px) {
    .opportunity-products .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .opportunity-products .product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* SEO Content Section */
.seo-content {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid var(--border-color);
}

.seo-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: left;
}

.seo-text {
    margin: 0;
}

.seo-text p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.seo-text p:first-child {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 16px;
}

.seo-categories {
    margin: 40px 0 0;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.seo-categories h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: left;
}

.seo-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.seo-categories li {
    background: #f8fafc;
    padding: 8px 16px;
    border-radius: 6px;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.seo-categories li:hover {
    background: #f1f5f9;
    color: var(--brand-color);
    cursor: pointer;
}

@media (max-width: 768px) {
    .seo-content {
        padding: 40px 0;
    }

    .seo-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .seo-text p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .seo-categories {
        margin-top: 30px;
        padding-top: 25px;
    }

    .seo-categories h3 {
        font-size: 18px;
    }

    .seo-categories ul {
        gap: 8px;
    }

    .seo-categories li {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .seo-content {
        padding: 30px 0;
    }

    .seo-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .seo-categories li {
        width: 100%;
        text-align: center;
    }
}

/* Footer Styles */
.footer {
    background-color: #f8f9fa;
    padding-top: 60px;
    margin-top: 60px;
}

.footer-top {
    padding-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.company-info {
    grid-column: span 1;
}

.footer-logo {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.company-desc {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 8px;
    color: #2c3e50;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: #2c3e50;
    color: #fff;
    transform: translateY(-2px);
}

.footer-title {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
}

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

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

.footer-links a {
    color: #6c757d;
    font-size: 14px;
    transition: color 0.3s ease;
    text-decoration: none;
}

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

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-info i {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 2px;
}

.footer-contact-link {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: #2c3e50;
}

.app-downloads p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 16px;
}

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

.app-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #2c3e50;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.app-btn:hover {
    background-color: #34495e;
    transform: translateY(-2px);
    color: #fff;
}

.app-btn i {
    font-size: 20px;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid #dee2e6;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #6c757d;
    font-size: 14px;
}

.payment-methods {
    display: flex;
    gap: 16px;
}

.payment-methods i {
    font-size: 24px;
    color: #2c3e50;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    background: #1ebe57;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .company-info {
        grid-column: span 4;
        text-align: center;
        max-width: 600px;
        margin: 0 auto 30px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .footer {
        padding-top: 50px;
        margin-top: 50px;
    }

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

    .company-info {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .footer {
        padding-top: 40px;
        margin-top: 40px;
    }

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

    .company-info {
        grid-column: span 1;
    }

    .footer-col {
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact-info {
        align-items: center;
    }

    .footer-contact-info li {
        justify-content: center;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 0;
    }

    .payment-methods {
        justify-content: center;
    }
}

.footer a {
    text-decoration: none;
}

.footer-links a {
    color: #6c757d;
    font-size: 14px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.contact-info a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 8px;
    color: #2c3e50;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #2c3e50;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Order Tracking Section */
.order-tracking-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
}

.order-tracking-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    display: block;
    width: 100%;
}

.section-desc {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    display: block;
    width: 100%;
}

.order-tracking-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-icon {
    width: 64px;
    height: 64px;
    background: #f0f4f8;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form-icon i {
    font-size: 32px;
    color: #2c3e50;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-header p {
    color: #6c757d;
    font-size: 15px;
}

.form-label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 15px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.input-group-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    background-color: #f9fafb;
    border-right: 1px solid #e5e7eb;
    border-radius: 8px 0 0 8px;
}

.input-group-text i {
    font-size: 16px;
    color: #6b7280;
}

.form-control {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    font-size: 15px;
    color: #374151;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

.input-group:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-control::placeholder {
    color: #9ca3af;
}

.btn-track {
    background-color: #2c3e50;
    border: none;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-track:hover {
    background-color: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(44,62,80,0.2);
}

.order-info-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
}

.info-header {
    text-align: center;
    margin-bottom: 32px;
}

.info-icon {
    width: 64px;
    height: 64px;
    background: #f0f4f8;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon i {
    font-size: 32px;
    color: #2c3e50;
}

.info-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.info-header p {
    color: #6c757d;
    font-size: 15px;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #f0f4f8;
    transform: translateY(-2px);
}

.info-item i {
    font-size: 24px;
    color: #2c3e50;
    margin-top: 4px;
}

.info-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.info-text p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .order-tracking-section {
        padding: 60px 0;
        min-height: auto;
    }

    .section-title {
        font-size: 32px;
    }

    .section-desc {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .order-tracking-form,
    .order-info-box {
        padding: 32px 24px;
    }

    .form-icon,
    .info-icon {
        width: 56px;
        height: 56px;
    }

    .form-icon i,
    .info-icon i {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .btn-track {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .order-tracking-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .section-desc {
        font-size: 14px;
    }

    .form-control {
        font-size: 14px;
    }

    .info-item {
        padding: 12px;
    }

    .info-text h4 {
        font-size: 15px;
    }

    .info-text p {
        font-size: 13px;
    }
}

/* Bank Accounts Section */
.bank-accounts-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    min-height: calc(100vh - 400px);
}

.bank-accounts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.bank-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.bank-card-header {
    padding: 24px;
    background: linear-gradient(45deg, #0891b2, #0e7490);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 16px;
}

.bank-logo {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bank-logo i {
    font-size: 24px;
    color: #fff;
}

.bank-name {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.bank-card-body {
    padding: 24px;
}

.account-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 14px;
    color: #64748b;
}

.info-value {
    font-size: 16px;
    color: #1e293b;
    font-weight: 500;
    font-family: monospace;
}

.iban-group {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    padding: 12px;
    border-radius: 8px;
}

.copy-btn {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 4px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    color: #0891b2;
    transform: scale(1.1);
}

.bank-accounts-note {
    margin-top: 40px;
    text-align: center;
}

.note-content {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 16px 24px;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.note-content i {
    color: #0891b2;
    font-size: 20px;
}

.note-content p {
    margin: 0;
    color: #334155;
    font-size: 15px;
}

@media (max-width: 991px) {
    .bank-accounts-section {
        padding: 60px 0;
    }

    .bank-accounts-grid {
        gap: 20px;
        margin-top: 40px;
    }

    .bank-card-header {
        padding: 20px;
    }

    .bank-logo {
        width: 40px;
        height: 40px;
    }

    .bank-name {
        font-size: 18px;
    }

    .bank-card-body {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .bank-accounts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .note-content {
        flex-direction: column;
        padding: 16px;
        border-radius: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .bank-accounts-section {
        padding: 40px 0;
    }

    .bank-card-header {
        padding: 16px;
    }

    .bank-logo {
        width: 36px;
        height: 36px;
    }

    .bank-name {
        font-size: 16px;
    }

    .bank-card-body {
        padding: 16px;
    }

    .info-value {
        font-size: 14px;
    }

    .iban-group {
        padding: 8px;
        font-size: 13px;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.contact-form-wrapper {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header .form-icon {
    width: 64px;
    height: 64px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.form-header .form-icon i {
    font-size: 24px;
    color: #fff;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #6b7280;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.btn-submit {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    background: #3b82f6;
    border: none;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.contact-info-wrapper {
    height: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    display: block;
    width: 100%;
    border-radius: 12px;
}

.contact-cards {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #f9fafb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.card-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.card-content p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.card-content a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.card-content a:hover {
    color: #3b82f6;
}

@media (max-width: 991px) {
    .contact-info-wrapper {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 1.5rem;
    }

    .form-header .form-icon {
        width: 56px;
        height: 56px;
    }

    .form-header h3 {
        font-size: 1.25rem;
    }

    .contact-card {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-cards {
        gap: 1rem;
    }

    .card-icon {
        width: 36px;
        height: 36px;
    }

    .card-icon i {
        font-size: 1rem;
    }

    .card-content h4 {
        font-size: 0.9375rem;
    }

    .card-content p {
        font-size: 0.875rem;
    }
}

/* Auth Section Styles */
.auth-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
    min-height: calc(100vh - 400px);
    position: relative;
}

.auth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    opacity: 0.03;
}

.auth-form-wrapper {
    background: #ffffff;
    padding: 48px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.auth-form-wrapper:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.login-form {
    border-radius: 16px 0 0 16px;
    background: #ffffff;
}

.register-form {
    border-radius: 0 16px 16px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8faff 0%, #e8f0fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.auth-icon i {
    font-size: 32px;
    color: #1a237e;
    transition: all 0.4s ease;
}

.auth-form-wrapper:hover .auth-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, #e8f0fe 0%, #c5cae9 100%);
}

.auth-header h2 {
    font-size: 32px;
    color: #1a237e;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.auth-header p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

.auth-form .form-group {
    margin-bottom: 28px;
}

.auth-form .form-label {
    font-size: 14px;
    color: #1a237e;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 0.3px;
}

.auth-form .input-group {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #ffffff;
}

.auth-form .input-group:focus-within {
    border-color: #1a237e;
    box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.08);
}

.auth-form .input-group-text {
    background: #f8faff;
    border: none;
    color: #1a237e;
    width: 50px;
    transition: all 0.4s ease;
    border-right: 1px solid #e2e8f0;
}

.auth-form .input-group:focus-within .input-group-text {
    background: #e8f0fe;
    color: #1a237e;
}

.auth-form .form-control {
    border: none;
    padding: 16px;
    font-size: 15px;
    color: #1a237e;
    background: transparent;
    font-weight: 500;
}

.auth-form .form-control::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.btn-show-password {
    background: none;
    border: none;
    color: #64748b;
    padding: 0 16px;
    transition: all 0.4s ease;
}

.btn-show-password:hover {
    color: #1a237e;
}

.form-check-label {
    font-size: 14px;
    color: #64748b;
}

.forgot-password {
    font-size: 14px;
    color: #1a237e;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s ease;
}

.forgot-password:hover {
    color: #283593;
    text-decoration: none;
    opacity: 0.9;
}

.btn-auth {
    padding: 16px 24px;
    font-weight: 500;
    font-size: 15px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    border: none;
    color: #ffffff;
    transition: all 0.4s ease;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-auth:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    transition: all 0.8s ease;
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.25);
}

.btn-auth:hover:before {
    left: 100%;
}

.social-login {
    margin-top: 40px;
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.social-login-text {
    display: block;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 24px;
    font-weight: 500;
}

.social-buttons {
    display: flex;
    gap: 16px;
}

.btn-social {
    flex: 1;
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    color: #1a237e;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s ease;
    letter-spacing: 0.3px;
}

.btn-social:hover {
    background: #f8faff;
    border-color: #1a237e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.1);
}

.btn-google i {
    color: #ea4335;
    font-size: 18px;
}

.btn-facebook i {
    color: #1877f2;
    font-size: 18px;
}

@media (max-width: 991px) {
    .auth-section {
        padding: 48px 0;
    }

    .auth-form-wrapper {
        padding: 40px 32px;
        margin-bottom: 24px;
    }

    .login-form,
    .register-form {
        border-radius: 16px;
    }
}

@media (max-width: 768px) {
    .auth-form-wrapper {
        padding: 32px 24px;
    }

    .auth-header {
        margin-bottom: 32px;
    }

    .auth-icon {
        width: 72px;
        height: 72px;
    }

    .auth-icon i {
        font-size: 28px;
    }

    .auth-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .auth-section {
        padding: 32px 0;
    }

    .auth-form-wrapper {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .auth-header h2 {
        font-size: 24px;
    }

    .auth-form .form-control {
        padding: 14px;
    }

    .social-buttons {
        flex-direction: column;
    }

    .btn-social {
        width: 100%;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    min-height: calc(100vh - 400px);
}

.section-header {
    margin-bottom: 48px;
}

.section-title {
    font-size: 36px;
    color: #1a237e;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.faq-category-btn {
    padding: 12px 24px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    color: #64748b;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-category-btn i {
    font-size: 16px;
}

.faq-category-btn:hover {
    background: #f8faff;
    color: #1a237e;
    border-color: #1a237e;
    transform: translateY(-2px);
}

.faq-category-btn.active {
    background: #1a237e;
    color: #ffffff;
    border-color: #1a237e;
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.2);
}

.faq-search {
    max-width: 600px;
    margin: 0 auto 48px;
}

.faq-search .input-group {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #ffffff;
}

.faq-search .input-group:focus-within {
    border-color: #1a237e;
    box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.08);
}

.faq-search .input-group-text {
    background: #f8faff;
    border: none;
    color: #64748b;
    padding: 0 16px;
}

.faq-search .form-control {
    border: none;
    padding: 16px;
    font-size: 15px;
    color: #1a237e;
    background: transparent;
}

.faq-search .form-control::placeholder {
    color: #94a3b8;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto 48px;
}

.accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 16px;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: #1a237e;
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.08);
}

.accordion-button {
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #1a237e;
    background: #ffffff;
    border: none;
    position: relative;
}

.accordion-button:not(.collapsed) {
    color: #1a237e;
    background: #f8faff;
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a237e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0 24px 20px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

.faq-contact {
    margin-top: 60px;
    padding: 0 20px;
}

.faq-contact .contact-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-contact .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.faq-contact .contact-icon {
    width: 80px;
    height: 80px;
    background: var(--brand-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.faq-contact .contact-icon i {
    font-size: 32px;
    color: #fff;
}

.faq-contact .contact-card h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 16px;
}

.faq-contact .contact-card p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.faq-contact .contact-card .btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-color);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.faq-contact .contact-card .btn i {
    font-size: 18px;
}

.faq-contact .contact-card .btn:hover {
    background: var(--brand-hover-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .faq-contact {
        margin-top: 40px;
    }

    .faq-contact .contact-card {
        padding: 30px 20px;
    }

    .faq-contact .contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .faq-contact .contact-icon i {
        font-size: 24px;
    }

    .faq-contact .contact-card h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .faq-contact .contact-card p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .faq-contact .contact-card .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-contact {
        margin-top: 30px;
        padding: 0 15px;
    }

    .faq-contact .contact-card {
        padding: 24px 16px;
    }

    .faq-contact .contact-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }

    .faq-contact .contact-icon i {
        font-size: 20px;
    }

    .faq-contact .contact-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .faq-contact .contact-card p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .faq-contact .contact-card .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Category Page Styles */
.category-page {
    padding: 40px 0;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.category-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
}

.category-tools {
    display: flex;
    align-items: center;
    gap: 24px;
}

.showing-result {
    color: var(--text-color);
    font-size: 14px;
}

.sort-wrapper .form-select {
    min-width: 200px;
    border-radius: 8px;
    border-color: var(--border-color);
    padding: 8px 16px;
    font-size: 14px;
}

.category-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
}

/* Filters Sidebar */
.filters-sidebar {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border-color);
    height: fit-content;
}

.filter-group {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

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

.filter-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 16px;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.filter-link:hover,
.filter-link.active {
    color: var(--brand-color);
}

.filter-link .count {
    font-size: 13px;
    color: #94a3b8;
}

.price-filter {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.price-inputs .form-control {
    width: 100%;
    border-radius: 8px;
    border-color: var(--border-color);
    padding: 8px 12px;
    font-size: 14px;
}

.btn-filter {
    background: var(--brand-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-filter:hover {
    background: var(--brand-hover-color);
}

.size-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
    color: var(--text-color);
    font-size: 14px;
    transition: all 0.3s ease;
}

.size-btn:hover,
.size-btn.active {
    background: var(--brand-color);
    border-color: var(--brand-color);
    color: #fff;
}

.color-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.color-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-btn::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--brand-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.color-btn:hover::after,
.color-btn.active::after {
    opacity: 1;
}

.color-btn[style*="background: #FFFFFF"] {
    border: 1px solid var(--border-color);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 8px;
}

.page-item .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 14px;
    transition: all 0.3s ease;
}

.page-item.active .page-link,
.page-item .page-link:hover {
    background: var(--brand-color);
    border-color: var(--brand-color);
    color: #fff;
}

.page-item.disabled .page-link {
    background: #f8f9fa;
    border-color: var(--border-color);
    color: #94a3b8;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 991px) {
    .category-content {
        grid-template-columns: 240px 1fr;
        gap: 24px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .category-page {
        padding: 32px 0;
    }

    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .category-title {
        font-size: 24px;
    }

    .category-tools {
        width: 100%;
        flex-direction: column;
        gap: 16px;
    }

    .sort-wrapper {
        width: 100%;
    }

    .sort-wrapper .form-select {
        width: 100%;
        min-width: auto;
    }

    .category-content {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: fixed;
        left: -100%;
        top: 0;
        bottom: 0;
        width: 280px;
        z-index: 1000;
        overflow-y: auto;
        transition: all 0.3s ease;
    }

    .filters-sidebar.active {
        left: 0;
    }
}

@media (max-width: 480px) {
    .category-page {
        padding: 24px 0;
    }

    .category-title {
        font-size: 20px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }

    .pagination .page-link {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

/* Mobile Filter Styles */
.mobile-filter-btn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 990;
    background: var(--brand-color);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mobile-filter-btn i {
    font-size: 20px;
}

.mobile-filter-btn .filter-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 13px;
}

.mobile-filter-menu {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1000;
    border-radius: 24px 24px 0 0;
    transition: all 0.3s ease;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

.mobile-filter-menu.active {
    bottom: 0;
}

.mobile-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-filter-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.close-filter-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #f8f9fa;
    border-radius: 8px;
    color: var(--text-color);
    font-size: 20px;
}

.mobile-filter-content {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.mobile-filter-footer {
    padding: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 12px;
}

.mobile-filter-footer .btn {
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
}

.mobile-filter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-filter-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 992px) {
    .mobile-filter-btn,
    .mobile-filter-menu,
    .mobile-filter-overlay {
        display: none;
    }
}

/* Product Detail Styles */
.product-detail-section {
    padding: 40px 0;
}

.product-gallery {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    
    height: calc(100% - 40px);
    display: flex;
    flex-direction: column;
}

.main-image-wrapper {
    position: relative;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumbnail-slider {
    position: relative;
    height: 80px;
    margin-top: auto;
}

.thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 30px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: 100%;
}

.thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    cursor: pointer;
    object-fit: cover;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail.active {
    opacity: 1;
    border: 2px solid var(--primary-color);
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: none;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Related Products Grid - 5 columns */
.related-products .product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .related-products .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .related-products .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .related-products .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .related-products .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-info {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
   
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

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

.stars {
    color: #ffc107;
    display: flex;
    gap: 2px;
}

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

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

.new-price {
    font-size: 19px;
    font-weight: 600;
    color: var(--primary-color);
}

.old-price {
    font-size: 18px;
    color: var(--text-light);
    text-decoration: line-through;
}

.discount-badge {
    background: var(--primary-color);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
}

.product-variants {
    margin-bottom: 30px;
}

.variant-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.size-options,
.color-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.size-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-btn:hover,
.size-btn.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.color-btn {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}

.color-btn::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border: 2px solid transparent;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.color-btn:hover::after,
.color-btn.active::after {
    border-color: var(--primary-color);
}

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

.quantity-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: #e9ecef;
}

.qty-input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-add-cart {
    flex: 1;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: var(--primary-dark);
}

.product-features {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.feature-item i {
    font-size: 20px;
}

.product-tabs {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tabs-header {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 0;
    border: none;
    background: none;
    color: var(--text-light);
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-content {
    display: none;
    padding: 20px;
    background: #fff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tab-content.active {
    display: block;
}

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

.specs-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.specs-table td:first-child {
    font-weight: 500;
    width: 200px;
}

.reviews-summary {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.rating-box {
    text-align: center;
}

.average-rating {
    font-size: 48px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 10px;
}

.rating-bars {
    flex: 1;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.rating-label {
    min-width: 80px;
}

.progress {
    flex: 1;
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary-color);
}

.rating-count {
    min-width: 40px;
    text-align: right;
}

.reviews-list {
    margin-top: 30px;
}

.review-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.reviewer-name {
    font-weight: 500;
    margin: 0;
}

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

.zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

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

.close-zoom {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.zoomed-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

@media (max-width: 991px) {
    .product-info {
        margin-top: 30px;
    }
    
    .reviews-summary {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .product-gallery {
        padding: 15px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .product-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .tabs-header {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .product-actions {
        flex-direction: column;
    }
    
    .quantity-wrapper {
        width: 100%;
    }
    
    .specs-table td {
        display: block;
        width: 100%;
    }
    
    .specs-table td:first-child {
        background: #f8f9fa;
        font-weight: 500;
    }
}

/* Product Detail Tabs Section */
.product-tabs-section {
    padding: 0 0 40px;
}
.product-detail-tabs {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.detail-tabs-nav {
    display: flex;
    border-bottom: 2px solid #f0f0f0;
    background: #fafbfc;
}
.detail-tab-btn {
    flex: 1;
    padding: 16px 24px;
    border: none;
    background: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.detail-tab-btn i {
    font-size: 18px;
}
.detail-tab-btn:hover {
    color: var(--text-dark);
    background: #f0f4f8;
}
.detail-tab-btn.active {
    color: var(--brand-color);
    background: #fff;
}
.detail-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--brand-color);
    border-radius: 3px 3px 0 0;
}
.detail-tab-content {
    display: none;
    padding: 30px;
}
.detail-tab-content.active {
    display: block;
}
.product-description-content {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dark);
    white-space: pre-line;
}

/* Product Rating Summary (top of product info) */
.product-rating-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.product-rating-summary .stars {
    color: #fbbf24;
    font-size: 16px;
    display: flex;
    gap: 1px;
}
.product-rating-summary .rating-text {
    font-size: 13px;
    color: var(--text-light);
}

/* Reviews Overview */
.reviews-overview {
    display: flex;
    gap: 40px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 24px;
}
.reviews-overview-left {
    text-align: center;
    min-width: 140px;
}
.rating-big-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 8px;
}
.rating-big-stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 6px;
    display: flex;
    justify-content: center;
    gap: 2px;
}
.rating-total-text {
    font-size: 13px;
    color: var(--text-light);
}
.reviews-overview-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}
.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.rating-bar-label {
    min-width: 40px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 3px;
}
.rating-bar-label i {
    color: #fbbf24;
    font-size: 12px;
}
.rating-bar-track {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}
.rating-bar-fill {
    height: 100%;
    background: #fbbf24;
    border-radius: 4px;
    transition: width 0.5s ease;
}
.rating-bar-count {
    min-width: 24px;
    text-align: right;
    font-size: 13px;
    color: var(--text-light);
}

/* Write Review Box */
.write-review-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid #e5e7eb;
}
.write-review-box h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.star-rating-input {
    margin-bottom: 16px;
}
.star-rating-input label:first-child {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    color: var(--text-dark);
}
.star-select {
    display: flex;
    gap: 4px;
}
.star-select input[type="radio"] {
    display: none;
}
.star-label {
    cursor: pointer;
    font-size: 28px;
    color: #d1d5db;
    transition: color 0.15s ease;
}
.star-label i {
    transition: all 0.15s ease;
}
.star-label:hover,
.star-label:hover ~ .star-label {
    color: #fbbf24;
}
.star-select input[type="radio"]:checked ~ .star-label i {
    color: #fbbf24;
}
.write-review-box textarea {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    resize: vertical;
    font-size: 14px;
}
.write-review-box textarea:focus {
    border-color: var(--brand-color);
    box-shadow: 0 0 0 3px rgba(8,145,178,0.1);
}

/* Reviews List */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.review-item {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}
.review-item:last-child {
    border-bottom: none;
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-color), #0e7490);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}
.review-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}
.review-date {
    font-size: 12px;
    color: var(--text-light);
}
.review-stars {
    color: #fbbf24;
    font-size: 15px;
    display: flex;
    gap: 1px;
}
.review-comment {
    font-size: 14px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}
.no-reviews-msg {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
}
.no-reviews-msg i {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
    opacity: 0.3;
}
.no-reviews-msg p {
    margin: 0;
    font-size: 14px;
}

/* Related Products Section */
.related-products-section {
    padding: 0 0 60px;
}
.related-products-section .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 991px) {
    .reviews-overview {
        flex-direction: column;
        gap: 20px;
    }
    .reviews-overview-left {
        min-width: auto;
    }
    .detail-tab-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
    .related-products-section .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .detail-tab-content {
        padding: 20px 16px;
    }
    .reviews-overview {
        padding: 16px;
    }
    .rating-big-number {
        font-size: 36px;
    }
    .write-review-box {
        padding: 16px;
    }
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .related-products-section .product-grid {
        grid-template-columns: 1fr;
    }
}

.discount-banner {
    background: linear-gradient(45deg, #FF6B6B, #FF8787, #FFA5A5);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.discount-banner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.1)' fill-rule='evenodd'/%3E%3C/svg%3E");
    animation: moveBackground 20s linear infinite;
}

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

.discount-banner-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

.discount-banner-subtitle {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out;
}

.floating-icons {
    max-width: 600px;
    margin: 0 auto;
}

.coupons-section {
    padding: 40px 0;
}

.coupon-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.coupon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.coupon-header {
    margin-bottom: 20px;
}

.coupon-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.coupon-subtitle {
    color: #6B7280;
    font-size: 0.9rem;
}

.discount-value {
    font-size: 2rem;
    font-weight: 700;
    color: #4F46E5;
    margin-bottom: 15px;
}

.coupon-code-wrapper {
    background: #F3F4F6;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.coupon-code {
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    letter-spacing: 1px;
}

.btn-copy-code {
    background: white;
    border: 1px solid #E5E7EB;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #4F46E5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-copy-code:hover {
    background: #4F46E5;
    color: white;
    border-color: #4F46E5;
}

.coupon-expiry {
    font-size: 0.9rem;
    color: #6B7280;
    text-align: center;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .discount-banner {
        padding: 40px 0;
    }
    
    .discount-banner h1 {
        font-size: 2rem;
    }
    
    .discount-banner p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .coupon-card {
        padding: 20px;
    }
    
    .discount-value {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .discount-banner h1 {
        font-size: 1.75rem;
    }
    
    .coupon-code-wrapper {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .btn-copy-code {
        width: 100%;
    }
}

.discount-coupons {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.coupons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    padding: 20px;
}

.coupon-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.coupon-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.coupon-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coupon-icon i {
    font-size: 24px;
}

.coupon-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.coupon-subtitle {
    font-size: 14px;
    color: #666;
    margin: 4px 0 0;
}

.coupon-value {
    font-size: 28px;
    font-weight: 700;
    color: #FF6B6B;
    margin: 16px 0;
}

.coupon-code {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 2px;
    color: #333;
    margin: 16px 0;
    border: 2px dashed #ddd;
}

.coupon-expires {
    font-size: 13px;
    color: #888;
    margin: 12px 0;
}

.btn-copy-code {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #FF6B6B;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-copy-code:hover {
    background: #FF5252;
}

.btn-copy-code.copied {
    background: #4CAF50;
}

@media (max-width: 768px) {
    .coupons-grid {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    
    .coupon-card {
        padding: 20px;
    }
    
    .coupon-value {
        font-size: 24px;
    }
}

.bundle-banner {
    background: linear-gradient(135deg, #43a047, #8cb68f, #c6e4c7);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.bundle-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    animation: moveBackground 20s linear infinite;
}

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

.bundle-banner-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bundle-banner-subtitle {
    color: #fff;
    font-size: 1.2rem;
    opacity: 0.9;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 60%; left: 20%; animation-delay: 0.5s; }
.floating-icon:nth-child(3) { top: 30%; left: 80%; animation-delay: 1s; }
.floating-icon:nth-child(4) { top: 70%; left: 70%; animation-delay: 1.5s; }
.floating-icon:nth-child(5) { top: 40%; left: 40%; animation-delay: 2s; }

.bundle-products {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.bundle-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px;
}

.bundle-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.bundle-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #FF6B6B;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.bundle-images {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-top: 20px;
}

.bundle-images img {
    width: 45%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.bundle-plus {
    font-size: 24px;
    font-weight: 700;
    color: #4A90E2;
}

.bundle-content {
    text-align: center;
}

.bundle-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.bundle-price {
    margin-bottom: 16px;
}

.new-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FF6B6B;
    margin-right: 8px;
}

.old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.btn-add-bundle {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #4A90E2;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-add-bundle:hover {
    background: #357ABD;
}

@keyframes moveBackground {
    from { background-position: 0 0; }
    to { background-position: 100% 100%; }
}

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

@media (max-width: 1200px) {
    .bundle-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .bundle-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .bundle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bundle-banner-title {
        font-size: 2rem;
    }
    
    .bundle-banner-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .bundle-grid {
        grid-template-columns: 1fr;
    }
    
    .bundle-banner {
        padding: 40px 0;
    }
    
    .bundle-banner-title {
        font-size: 1.5rem;
    }
}

/* Shipping Banner Styles */
.shipping-banner {
    position: relative;
    background: linear-gradient(135deg, #1e88e5, #6dcef8);
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
    margin-bottom: 40px;
}

.shipping-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    animation: moveBackground 20s linear infinite;
}

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

.shipping-banner-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.shipping-banner-subtitle {
    color: #fff;
    font-size: 1.2rem;
    opacity: 0.9;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    color: rgba(255,255,255,0.3);
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 60%; left: 20%; animation-delay: 0.5s; }
.floating-icon:nth-child(3) { top: 30%; left: 80%; animation-delay: 1s; }
.floating-icon:nth-child(4) { top: 70%; left: 70%; animation-delay: 1.5s; }
.floating-icon:nth-child(5) { top: 40%; left: 40%; animation-delay: 2s; }

.shipping-products {
    padding: 40px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

@keyframes moveBackground {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

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

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shipping-banner-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .shipping-banner {
        padding: 40px 0;
    }
    
    .shipping-banner-title {
        font-size: 1.8rem;
    }
    
    .shipping-banner-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .shipping-banner {
        padding: 30px 0;
    }
    
    .shipping-banner-title {
        font-size: 1.5rem;
    }
    
    .shipping-banner-subtitle {
        font-size: 0.9rem;
    }
}

.campaign-banner {
    background: linear-gradient(135deg, #FF6B6B, #FF8787, #FFA5A5);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-bottom: 40px;
}

.campaign-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    animation: moveBackground 20s linear infinite;
}

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

.campaign-banner-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.campaign-banner-subtitle {
    color: #fff;
    font-size: 1.2rem;
    opacity: 0.9;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 60%; left: 20%; animation-delay: 0.5s; }
.floating-icon:nth-child(3) { top: 30%; left: 80%; animation-delay: 1s; }
.floating-icon:nth-child(4) { top: 70%; left: 70%; animation-delay: 1.5s; }
.floating-icon:nth-child(5) { top: 40%; left: 40%; animation-delay: 2s; }

.campaign-cards {
    padding: 40px 0;
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.campaign-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.campaign-card.upcoming .campaign-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
}

.campaign-card.upcoming .btn-campaign.disabled {
    background: #999;
    cursor: not-allowed;
    opacity: 0.7;
}

.campaign-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    background: #ff6b6b;
    color: #fff;
}

.campaign-status.active {
    background: #51cf66;
}

.campaign-dates {
    margin: 15px 0;
    color: #fff;
}

.date-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.date-item i {
    margin-right: 8px;
    font-size: 16px;
}

.date-item span {
    font-size: 14px;
}

.campaign-card:hover {
    transform: translateY(-5px);
}

.campaign-image {
    position: relative;
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.campaign-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.campaign-content {
    color: #fff;
    max-width: 300px;
}

.campaign-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.campaign-content p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn-campaign {
    display: inline-block;
    padding: 12px 24px;
    background: #ff6b6b;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-campaign:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .campaign-image {
        height: 250px;
    }

    .campaign-content h3 {
        font-size: 20px;
    }

    .campaign-content p {
        font-size: 14px;
    }

    .date-item {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .campaign-image {
        height: 200px;
    }

    .campaign-content h3 {
        font-size: 18px;
    }

    .campaign-status {
        font-size: 12px;
        padding: 4px 10px;
    }

    .date-item {
        font-size: 12px;
    }
}

@keyframes moveBackground {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

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

@media (max-width: 991px) {
    .campaign-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .campaign-banner-title {
        font-size: 2rem;
    }
    .campaign-banner-subtitle {
        font-size: 1rem;
    }
    .campaign-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .campaign-banner {
        padding: 40px 0;
    }
    .campaign-banner-title {
        font-size: 1.5rem;
    }
    .campaign-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.flash-banner {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(45deg, #8e24aa, #af7bbd, #dfbce5);
    text-align: center;
    overflow: hidden;
}

.flash-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 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='%23ffffff' fill-opacity='0.1'%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");
    animation: moveBackground 20s linear infinite;
}

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

.flash-banner-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.flash-banner-subtitle {
    font-size: 18px;
    color: #fff;
    opacity: 0.9;
}

.flash-products {
    padding: 40px 0;
    background: #f8f9fa;
}

.flash-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.flash-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.flash-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FF6B6B;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    z-index: 2;
}

.countdown {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
}

.flash-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.flash-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

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

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

.flash-buttons {
    display: flex;
    gap: 10px;
}

.btn-flash-action {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-flash-action:hover {
    background: #FF6B6B;
    color: #fff;
    transform: translateY(-2px);
}

.flash-content {
    padding: 15px;
}

.flash-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.flash-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.flash-rating i {
    color: #ffc107;
    font-size: 14px;
}

.flash-rating span {
    color: #666;
    font-size: 14px;
}

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

.new-price {
    font-size: 18px;
    font-weight: 700;
    color: #FF6B6B;
}

.old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.stock-info {
    position: relative;
    height: 6px;
    background: #eee;
    border-radius: 3px;
    margin-top: 10px;
}

.stock-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #FF6B6B;
    border-radius: 3px;
}

.stock-info span {
    position: absolute;
    top: -20px;
    right: 0;
    font-size: 12px;
    color: #666;
}

@media (max-width: 1200px) {
    .flash-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .flash-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .flash-banner-title {
        font-size: 28px;
    }

    .flash-banner-subtitle {
        font-size: 16px;
    }

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

@media (max-width: 480px) {
    .flash-banner {
        padding: 40px 0;
    }

    .flash-banner-title {
        font-size: 24px;
    }

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

    .flash-content h3 {
        font-size: 14px;
    }

    .new-price {
        font-size: 16px;
    }
}

@keyframes moveBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}

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

.new-arrivals-banner {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(45deg, #2196f3, #64b5f6, #90caf9);
    text-align: center;
    overflow: hidden;
}

.new-arrivals-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 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='%23ffffff' fill-opacity='0.1'%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");
    animation: moveBackground 20s linear infinite;
}

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

.new-arrivals-banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.new-arrivals-banner-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 60%; left: 20%; animation-delay: 0.5s; }
.floating-icon:nth-child(3) { top: 30%; left: 80%; animation-delay: 1s; }
.floating-icon:nth-child(4) { top: 70%; left: 70%; animation-delay: 1.5s; }
.floating-icon:nth-child(5) { top: 40%; left: 40%; animation-delay: 2s; }

.new-arrivals-products {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.new-arrivals-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.new-arrival-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.new-arrival-card:hover {
    transform: translateY(-5px);
}

.new-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #2196f3;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    z-index: 2;
}

.new-arrival-image {
    position: relative;
    overflow: hidden;
}

.new-arrival-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.new-arrival-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.new-arrival-card:hover .new-arrival-overlay {
    opacity: 1;
}

.new-arrival-buttons {
    display: flex;
    gap: 10px;
}

.btn-new-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-new-action:hover {
    background: #2196f3;
    color: #fff;
    transform: translateY(-2px);
}

.new-arrival-content {
    padding: 15px;
}

.new-arrival-content h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
}

.new-arrival-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.new-arrival-rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.new-arrival-rating span {
    color: #666;
    font-size: 0.8rem;
}

.new-arrival-price {
    font-weight: 600;
    color: #2196f3;
}

@keyframes moveBackground {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 60px 60px;
    }
}

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

@media (max-width: 1200px) {
    .new-arrivals-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .new-arrivals-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .new-arrivals-banner-title {
        font-size: 2rem;
    }
    .new-arrivals-banner-subtitle {
        font-size: 1rem;
    }
    .new-arrivals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .new-arrivals-banner {
        padding: 40px 0;
    }
    .new-arrivals-banner-title {
        font-size: 1.5rem;
    }
    .new-arrivals-grid {
        grid-template-columns: 1fr;
    }
    .new-arrival-content h3 {
        font-size: 0.9rem;
    }
}

.advantage-banner {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(45deg, #FF6B6B, #FF8787, #FFA5A5);
    text-align: center;
    overflow: hidden;
}

.advantage-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    animation: moveBackground 20s linear infinite;
}

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

.advantage-banner-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.advantage-banner-subtitle {
    color: #fff;
    font-size: 1.2rem;
    opacity: 0.9;
}

.advantage-products {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.advantage-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FF6B6B;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    z-index: 2;
}

.advantage-image {
    position: relative;
    overflow: hidden;
}

.advantage-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

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

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

.advantage-buttons {
    display: flex;
    gap: 10px;
}

.btn-advantage-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-advantage-action:hover {
    background: #FF6B6B;
    color: #fff;
}

.advantage-content {
    padding: 15px;
}

.advantage-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.advantage-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.advantage-rating i {
    color: #ffc107;
}

.advantage-rating span {
    color: #6c757d;
    font-size: 0.9rem;
}

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

.advantage-price .new-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FF6B6B;
}

.advantage-price .old-price {
    font-size: 1rem;
    color: #6c757d;
    text-decoration: line-through;
}

@media (max-width: 1200px) {
    .advantage-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .advantage-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .advantage-banner-title {
        font-size: 2rem;
    }
    .advantage-banner-subtitle {
        font-size: 1rem;
    }
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .advantage-banner {
        padding: 40px 0;
    }
    .advantage-banner-title {
        font-size: 1.5rem;
    }
    .advantage-grid {
        grid-template-columns: 1fr;
    }
    .advantage-content h3 {
        font-size: 1rem;
    }
}

@keyframes moveBackground {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 100%;
    }
}

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

.limited-banner {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(45deg, #ff4757, #ff6b81, #ff7f8c);
    overflow: hidden;
    text-align: center;
}

.limited-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    animation: moveBackground 20s linear infinite;
}

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

.limited-banner-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.limited-banner-subtitle {
    color: #fff;
    font-size: 1.2rem;
    opacity: 0.9;
}

.limited-products {
    padding: 60px 0;
    background: #f8f9fa;
}

.limited-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.limited-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

.stock-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4757;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    z-index: 2;
}

.limited-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}

.limited-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

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

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

.limited-buttons {
    display: flex;
    gap: 10px;
}

.btn-limited-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-limited-action:hover {
    background: #ff4757;
    color: #fff;
}

.limited-content {
    padding: 20px;
}

.limited-content h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
}

.limited-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.limited-rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.limited-rating span {
    color: #666;
    font-size: 0.9rem;
}

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

.limited-price .new-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff4757;
}

.limited-price .old-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}

.stock-progress {
    background: #f1f1f1;
    height: 6px;
    border-radius: 3px;
    position: relative;
    margin-top: 10px;
}

.stock-progress .progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #ff4757;
    border-radius: 3px;
}

.stock-progress span {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
}

@media (max-width: 1200px) {
    .limited-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .limited-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .limited-banner-title {
        font-size: 2rem;
    }
    .limited-banner-subtitle {
        font-size: 1rem;
    }
    .limited-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .limited-banner {
        padding: 40px 0;
    }
    .limited-banner-title {
        font-size: 1.5rem;
    }
    .limited-grid {
        grid-template-columns: 1fr;
    }
    .limited-content h3 {
        font-size: 0.9rem;
    }
}

@keyframes moveBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

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

.bestseller-banner {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(45deg, #ff6b6b, #ffa502, #ff7f50);
    overflow: hidden;
    text-align: center;
}

.bestseller-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    animation: moveBackground 20s linear infinite;
}

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

.bestseller-banner-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.bestseller-banner-subtitle {
    color: #fff;
    font-size: 1.2rem;
    opacity: 0.9;
}

.bestseller-products {
    padding: 60px 0;
    background: #f8f9fa;
}

.bestseller-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.bestseller-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

.bestseller-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff6b6b;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    z-index: 2;
}

.bestseller-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}

.bestseller-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

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

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

.bestseller-buttons {
    display: flex;
    gap: 10px;
}

.btn-bestseller-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-bestseller-action:hover {
    background: #ff6b6b;
    color: #fff;
}

.bestseller-content {
    padding: 20px;
}

.bestseller-content h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
}

.bestseller-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.bestseller-rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.bestseller-rating span {
    color: #666;
    font-size: 0.9rem;
}

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

.bestseller-price .new-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b6b;
}

.bestseller-price .old-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}

@media (max-width: 1200px) {
    .bestseller-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .bestseller-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .bestseller-banner-title {
        font-size: 2rem;
    }
    .bestseller-banner-subtitle {
        font-size: 1rem;
    }
    .bestseller-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .bestseller-banner {
        padding: 40px 0;
    }
    .bestseller-banner-title {
        font-size: 1.5rem;
    }
    .bestseller-grid {
        grid-template-columns: 1fr;
    }
    .bestseller-content h3 {
        font-size: 0.9rem;
    }
}

@keyframes moveBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

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

/* Beğenilenler Banner */
.favorite-banner {
    background: linear-gradient(135deg, #FF6B6B, #FF8787, #FFA5A5);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.favorite-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    animation: moveBackground 20s linear infinite;
}

.favorite-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.favorite-banner-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.favorite-banner-subtitle {
    color: #fff;
    font-size: 1.2rem;
    opacity: 0.9;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 60%; left: 20%; animation-delay: 0.5s; }
.floating-icon:nth-child(3) { top: 30%; left: 80%; animation-delay: 1s; }
.floating-icon:nth-child(4) { top: 70%; left: 70%; animation-delay: 1.5s; }
.floating-icon:nth-child(5) { top: 40%; left: 40%; animation-delay: 2s; }

/* Beğenilen Ürünler Grid */
.favorite-products {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.favorite-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.favorite-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.favorite-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.favorite-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FF6B6B;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    z-index: 2;
}

.favorite-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.favorite-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

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

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

.favorite-buttons {
    display: flex;
    gap: 10px;
}

.btn-favorite-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-favorite-action:hover {
    background: #FF6B6B;
    color: #fff;
}

.favorite-content {
    padding: 15px;
}

.favorite-content h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.favorite-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.favorite-rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.favorite-rating span {
    color: #6c757d;
    font-size: 0.9rem;
}

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

.favorite-price .new-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FF6B6B;
}

.favorite-price .old-price {
    font-size: 0.9rem;
    color: #6c757d;
    text-decoration: line-through;
}

@keyframes moveBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

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

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .favorite-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .favorite-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .favorite-banner-title {
        font-size: 2rem;
    }
    .favorite-banner-subtitle {
        font-size: 1rem;
    }
    .favorite-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .favorite-banner {
        padding: 40px 0;
    }
    .favorite-banner-title {
        font-size: 1.5rem;
    }
    .favorite-grid {
        grid-template-columns: 1fr;
    }
    .favorite-content h3 {
        font-size: 0.9rem;
    }
}

/* Ürün Etiketleri */
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.product-badge-item {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
}

.badge-shipping {
    background-color: #00c853;
}

.badge-flash {
    background-color: #ff3d00;
}

.badge-advantage {
    background-color: #2962ff;
}

.badge-bestseller {
    background-color: #aa00ff;
}

.product-badge-item i {
    font-size: 14px;
}

.badge-campaign {
    background-color: #f50057;
}

.badge-limited {
    background-color: #d500f9;
}

.badge-favorite {
    background-color: #ff6d00;
}

.delivery-info {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 15px 0;
}

.delivery-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.delivery-row:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
}

.delivery-icon {
    display: flex;
    align-items: center;
}

.delivery-icon img {
    width: 24px;
    height: 24px;
}

.delivery-content {
    flex: 1;
}

.delivery-title {
    color: #0bc15c;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.delivery-text {
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.delivery-location {
    color: #f27a1a;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.delivery-location i {
    font-size: 16px;
}

.campaign-section {
    padding: 15px;
}

.campaign-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.campaign-item {
    display: flex;
    align-items: center;
    padding: 2px 0;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin: 2px 0;
}

.campaign-icon {
    width: 30px;
    text-align: center;
}

.campaign-icon i {
    font-size: 14px;
    color: #0bc15c;
}

.campaign-text {
    flex: 1;
    font-size: 13px;
    color: #333;
    margin-left: 8px;
}

.campaign-arrow {
    width: 20px;
    text-align: center;
}

.campaign-arrow i {
    font-size: 14px;
    color: #999;
}

.favorite-add-btn {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ff6000;
    border-radius: 4px;
    padding: 6px 12px;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.favorite-add-btn i {
    color: #ff6000;
    font-size: 16px;
    margin-right: 8px;
}

.favorite-add-btn span {
    color: #ff6000;
    font-size: 14px;
    font-weight: 500;
}

.favorite-add-btn:hover {
    background-color: #fff4ed;
}

.features-cards {
    margin-top: 15px;
}

.feature-card {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    background: #fff;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fef2f2;
    margin-right: 12px;
}

.feature-icon i {
    font-size: 20px;
    color: #ff385c;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 2px 0;
}

.feature-desc {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.product-codes {
    margin: 15px 0;
    padding: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.code-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.code-item:last-child {
    margin-bottom: 0;
}

.code-label {
    font-size: 13px;
    color: #666;
    margin-right: 10px;
    min-width: 80px;
}

.code-value {
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

.model-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.model-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.model-btn:hover {
    border-color: #999;
}

.model-btn.active {
    border-color: #333;
    background: #333;
    color: #fff;
}

/* ========================================
   SEO ARTICLE LANDING PAGES
   ======================================== */

/* Product Card Article Link */
.product-article-link {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--brand-color);
    text-decoration: none;
    opacity: 0.7;
    transition: all .2s;
}
.product-article-link:hover { opacity: 1; text-decoration: underline; }
.product-article-link i { margin-right: 3px; }

/* Hero Section */
.seo-article-hero {
    padding: 50px 0 60px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}
.seo-article-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(8,145,178,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.seo-hero-inner { position: relative; z-index: 1; }

.seo-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.seo-breadcrumb a { color: #64748b; text-decoration: none; }
.seo-breadcrumb a:hover { color: var(--brand-color); }
.seo-breadcrumb span { color: var(--brand-color); font-weight: 500; }

.seo-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ecfdf5;
    color: #059669;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.seo-hero-badge i { font-size: 16px; }

.seo-hero-title {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 18px;
}
.seo-hero-title span { color: var(--brand-color); }

.seo-hero-desc {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 600px;
}

.seo-hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.seo-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}
.seo-stat i {
    font-size: 28px;
    color: var(--brand-color);
}
.seo-stat strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}
.seo-stat span {
    font-size: 12px;
    color: #94a3b8;
}

.seo-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-seo-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--brand-color), #0e7490);
    color: #fff !important;
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    border: none;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 4px 14px rgba(8,145,178,0.3);
}
.btn-seo-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8,145,178,0.4);
}
.btn-seo-primary.btn-lg { padding: 16px 32px; font-size: 16px; }

.btn-seo-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #fff;
    color: var(--brand-color) !important;
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    border: 2px solid var(--brand-color);
    text-decoration: none;
    transition: all .3s;
}
.btn-seo-outline:hover {
    background: var(--brand-color);
    color: #fff !important;
}
.btn-seo-outline.btn-lg { padding: 16px 32px; font-size: 16px; }

/* Hero Card */
.seo-hero-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid #e2e8f0;
}
.seo-hero-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.seo-hero-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.seo-hero-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}
.seo-hero-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--brand-color);
    margin-bottom: 12px;
}
.seo-hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
    color: #f59e0b;
    font-size: 16px;
}
.seo-hero-rating span {
    color: #64748b;
    font-size: 13px;
    margin-left: 6px;
}
.seo-hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
}
.seo-hero-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #f1f5f9;
}
.seo-hero-features li i {
    color: #10b981;
    font-size: 16px;
    flex-shrink: 0;
}
.seo-hero-features li:last-child { border-bottom: none; }

.btn-seo-card {
    display: block;
    padding: 12px;
    background: #f0f9ff;
    color: var(--brand-color) !important;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: all .2s;
}
.btn-seo-card:hover {
    background: var(--brand-color);
    color: #fff !important;
}

/* Article Content */
.seo-article-content {
    padding: 60px 0;
}
.seo-article-block {
    margin-bottom: 48px;
}
.seo-article-block h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.seo-article-block h2 i {
    color: var(--brand-color);
    font-size: 26px;
}
.seo-article-block p {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Features Grid */
.seo-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}
.seo-feature-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: all .3s;
}
.seo-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-color: var(--brand-color);
}
.seo-feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #e0f2fe, #ecfdf5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.seo-feature-icon i {
    font-size: 22px;
    color: var(--brand-color);
}
.seo-feature-card h4 {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin: 0;
    line-height: 1.4;
}

/* Highlight Box */
.seo-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
    border: 1px solid #a7f3d0;
    border-radius: 16px;
    padding: 24px;
    margin-top: 20px;
}
.seo-highlight-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #10b981;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.seo-highlight-icon i { font-size: 22px; color: #fff; }
.seo-highlight-box h4 { font-size: 16px; font-weight: 700; color: #065f46; margin-bottom: 6px; }
.seo-highlight-box p { font-size: 14px; color: #047857; margin: 0; line-height: 1.6; }

/* Steps */
.seo-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.seo-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}
.seo-step:last-child { border-bottom: none; }
.seo-step-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--brand-color);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.seo-step h4 { font-size: 16px; font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.seo-step p { font-size: 14px; color: #64748b; margin: 0; line-height: 1.6; }

/* FAQ */
.seo-faq-list { display: flex; flex-direction: column; gap: 8px; }
.seo-faq-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all .2s;
}
.seo-faq-item.open { border-color: var(--brand-color); }
.seo-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    text-align: left;
}
.seo-faq-question i { font-size: 18px; color: var(--brand-color); transition: transform .3s; }
.seo-faq-item.open .seo-faq-question i { transform: rotate(45deg); }
.seo-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.seo-faq-item.open .seo-faq-answer { max-height: 300px; }
.seo-faq-answer p {
    padding: 0 20px 16px;
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Reviews Widget */
.seo-reviews-widget { display: flex; flex-direction: column; gap: 12px; }
.seo-review-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
}
.seo-review-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.seo-review-avatar {
    width: 36px;
    height: 36px;
    background: var(--brand-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}
.seo-review-head strong { font-size: 14px; color: #0f172a; }
.seo-review-stars { color: #f59e0b; font-size: 13px; }
.seo-review-date { margin-left: auto; font-size: 12px; color: #94a3b8; }
.seo-review-card p { font-size: 14px; color: #475569; margin: 0; line-height: 1.6; }

/* Sidebar */
.seo-sidebar-sticky { position: sticky; top: 20px; }
.seo-purchase-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    margin-bottom: 20px;
}
.seo-purchase-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
}
.seo-purchase-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.seo-purchase-card h3 { font-size: 16px; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.seo-purchase-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--brand-color);
    margin-bottom: 16px;
}
.seo-purchase-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    text-align: left;
}
.seo-purchase-meta div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
}
.seo-purchase-meta i { color: var(--brand-color); font-size: 16px; }

/* Sidebar Widgets */
.seo-sidebar-widget {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}
.seo-sidebar-widget h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.seo-sidebar-widget h4 i { color: var(--brand-color); }

.seo-trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.seo-trust-list li {
    padding: 10px 0;
    font-size: 13px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f1f5f9;
}
.seo-trust-list li:last-child { border-bottom: none; }
.seo-trust-list li i { color: #10b981; font-size: 16px; }

.seo-cat-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.seo-cat-links li { border-bottom: 1px solid #f1f5f9; }
.seo-cat-links li:last-child { border-bottom: none; }
.seo-cat-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    text-decoration: none;
    transition: all .2s;
}
.seo-cat-links li a:hover { padding-left: 4px; }
.seo-cat-links li a img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}
.seo-cat-links li a span {
    font-size: 13px;
    color: #334155;
    flex: 1;
    line-height: 1.3;
}
.seo-cat-links li a strong {
    font-size: 13px;
    color: var(--brand-color);
    white-space: nowrap;
}

/* CTA Section */
.seo-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}
.seo-cta-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.seo-cta-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.seo-cta-content p {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 28px;
    line-height: 1.7;
}
.seo-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.seo-cta-section .btn-seo-outline {
    border-color: rgba(255,255,255,0.3);
    color: #fff !important;
}
.seo-cta-section .btn-seo-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Related Section */
.seo-related-section {
    padding: 60px 0;
    background: #f8fafc;
}

/* Responsive */
@media (max-width: 991px) {
    .seo-hero-title { font-size: 28px; }
    .seo-hero-stats { gap: 16px; }
    .seo-features-grid { grid-template-columns: repeat(2, 1fr); }
    .seo-sidebar-sticky { position: static; }
    .seo-cta-content h2 { font-size: 26px; }
}
@media (max-width: 575px) {
    .seo-article-hero { padding: 30px 0 40px; }
    .seo-hero-title { font-size: 24px; }
    .seo-hero-stats { flex-direction: column; gap: 12px; }
    .seo-hero-actions { flex-direction: column; }
    .seo-hero-actions .btn-seo-primary,
    .seo-hero-actions .btn-seo-outline { width: 100%; justify-content: center; }
    .seo-features-grid { grid-template-columns: 1fr; }
    .seo-cta-buttons { flex-direction: column; }
    .seo-cta-buttons .btn-seo-primary,
    .seo-cta-buttons .btn-seo-outline { width: 100%; justify-content: center; }
    .seo-highlight-box { flex-direction: column; }
    .seo-article-content { padding: 30px 0; }
    .seo-cta-section { padding: 40px 0; }
    .seo-cta-content h2 { font-size: 22px; }
}