:root {
    --primary-color: #83232a; /* Traditional Japanese Red */
    --primary-color-rgb: 131, 35, 42; /* RGB values for primary color */
    --secondary-color: #2a4359; /* Indigo Blue (Aizome) */
    --accent-color: #d9a62e; /* Gold Accent */
    --neutral-color: #f7f6f2; /* Rice Paper White */
    --dark-color: #1a1a1a;
    --text-color: #333;
    --light-text: #ffffff;
    --border-color: #e5e2d9;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --success-color: #4caf50;
    --error-color: #f44336;
    --info-color: #2196f3;
    --warning-color: #ff9800;
    --font-main: 'Noto Sans JP', sans-serif;
    --font-heading: 'Noto Serif JP', serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--neutral-color);
    line-height: 1.6;
}

.spro-theme {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2383232a' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
}

img {
    max-width: 100%;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    text-align: center;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.japanese-icon {
    margin: 0 10px;
    font-size: 1.2em;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 10px var(--shadow-color);
}

.header-top {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

/* Header container with logo on left and actions on right */
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
}

.logo h1 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-accent {
    color: var(--secondary-color);
    margin-left: 5px;
}

.logo p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-top: 0;
}

/* Header right with search and user actions */
.header-right {
    display: flex;
    align-items: center;
}

.search {
    margin-right: 20px;
}

.search form {
    display: flex;
    background-color: #f8f8f8;
    border-radius: 4px;
    overflow: hidden;
}

.search input {
    width: 180px;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-right: none;
    background-color: transparent;
    font-family: var(--font-main);
}

.search button {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
}

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

.user-actions a {
    margin: 0 15px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.user-actions a i {
    margin-right: 5px;
    color: var(--primary-color);
}

.user-actions a:hover {
    color: var(--primary-color);
}

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

.category-dropdown select {
    height: 100%;
    padding: 8px 30px 8px 10px;
    border: 1px solid var(--border-color);
    border-right: none;
    background-color: var(--neutral-color);
    color: var(--text-color);
    font-family: var(--font-main);
    appearance: none;
    cursor: pointer;
}

.category-dropdown::after {
    content: '\f0d7';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    pointer-events: none;
}

/* Updated header actions */
.header-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.search-container {
    margin-bottom: 10px;
    width: 100%;
    max-width: 500px;
}

.search-box {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 5px var(--shadow-color);
}

.cart-popup-wrapper {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.cart-popup {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background-color: white;
    box-shadow: 0 5px 15px var(--shadow-color);
    z-index: 999;
    display: none;
    padding: 15px;
    border-radius: 4px;
    margin-top: 10px;
    max-height: 400px;
    overflow: hidden;
}

#cart-with-items {
    display: flex;
    flex-direction: column;
    max-height: 370px;
}

#cart-with-items > div:not(.cart-total):not(.cart-buttons) {
    overflow-y: auto;
    max-height: 300px;
}

/* Create a container for the scrollable items */
.cart-items-container {
    overflow-y: auto;
    max-height: 260px;
    margin-bottom: 10px;
}

.cart-total {
    position: sticky;
    bottom: 0;
    background-color: white;
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    font-weight: bold;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

.cart-buttons {
    position: sticky;
    bottom: 0;
    background-color: white;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.cart-buttons a {
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 0.9rem;
    text-align: center;
    flex: 0 1 auto;
    margin: 0 5px;
    min-width: 120px;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 10px;
}

.cart-item-info h4 {
    margin: 0;
    font-size: 0.9rem;
}

.cart-item-price, .cart-item-qty {
    margin: 0;
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    font-weight: bold;
}

.cart-buttons {
    display: flex;
    justify-content: space-between;
}

.cart-buttons a {
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 0.9rem;
    text-align: center;
    flex: 1;
    display: block;
    margin: 0 5px;
}

.cart-buttons a:hover {
    background-color: var(--secondary-color);
    color: white;
}

.empty-cart {
    text-align: center;
    padding: 20px 0;
}

.main-nav {
    background-color: var(--primary-color);
    color: white;
    padding: 0;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

#main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

#main-menu > li {
    position: relative;
}

#main-menu > li > a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

#main-menu > li > a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-menu {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 2px 10px var(--shadow-color);
    display: none;
    z-index: 999;
}

.dropdown-menu:hover .dropdown-content {
    display: block;
}

.dropdown-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-content ul li {
    padding: 0;
    position: relative;
}

.dropdown-content ul li a {
    display: block;
    padding: 12px 15px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-content ul li a:hover {
    background-color: var(--neutral-color);
    color: var(--primary-color);
}

.dropdown-indicator {
    float: right;
    font-size: 0.8rem;
    margin-top: 4px;
}

.second-level {
    position: relative;
}

.third-level-content {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 2px 10px var(--shadow-color);
    display: none;
    z-index: 999;
}

.second-level:hover .third-level-content {
    display: block;
}

/* Main Content Layout */
.main-content {
    display: flex;
    padding: 20px 0;
}

.main-content.container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.sidebar {
    width: 25%;
    min-width: 250px;
}

.sidebar.sidebar-left {
    padding-right: 20px;
}

.sidebar.sidebar-right {
    padding-left: 20px;
}

.content {
    width: 75%;
}

.full-content {
    width: 100%;
}

/* Sidebar Sections */
.sidebar h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
}

.sidebar .subtitle {
    font-size: 0.75rem;
    color: var(--secondary-color);
    font-weight: normal;
    margin-top: 3px;
}

.category-menu ul {
    list-style: none;
}

.category-menu ul li {
    margin-bottom: 8px;
}

.category-menu ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.category-menu ul li a:hover {
    color: var(--primary-color);
}

.category-menu ul li a::after {
    content: '›';
    color: var(--primary-color);
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.category-menu ul li a:hover::after {
    opacity: 1;
    transform: translateX(5px);
}

.new-arrivals-sidebar, .instagram-sidebar {
    margin-top: 40px;
}

.sidebar-product-link {
    text-decoration: none;
    color: var(--text-color);
}

.sidebar-product {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 4px;
}

.sidebar-product:hover {
    background-color: rgba(0, 0, 0, 0.03);
    transform: translateY(-3px);
}

.sidebar-product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 10px;
}

.sidebar-product h4 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.sidebar-product p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

.instagram-feed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--primary-color-rgb), 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    color: white;
    font-size: 1.5rem;
}

.instagram-follow {
    text-align: center;
    margin-top: 10px;
}

.insta-follow-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 0.9rem;
}

.insta-follow-btn i {
    margin-right: 5px;
}

.insta-follow-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* More styles would be added here for the main content, product cards, etc. */

/* Main Slider */
.slider-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 4px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    flex: 0 0 100%;
    position: relative;
}

.slide img, .slide video {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 30px 20px 20px;
}

.slide-content h2 {
    margin: 0 0 5px;
    font-size: 2rem;
}

.slide-content .subtitle {
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
    opacity: 0.8;
}

.slide-content p {
    margin: 10px 0 0;
    font-size: 1.1rem;
}

.slide-link {
    color: white;
    text-decoration: none;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 2;
}

.prev-button, .next-button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-button:hover, .next-button:hover {
    background-color: var(--primary-color);
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: white;
    width: 30px;
    border-radius: 5px;
}

/* Product Sections */
.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title .subtitle {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: normal;
}

/* More styles needed for other sections */

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
    .main-content {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
        min-width: auto;
    }

    .content {
        width: 100%;
    }

    .header-right {
        flex-direction: column;
        align-items: flex-end;
    }

    .search {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .content {
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }

    #main-menu {
        display: none;
        flex-direction: column;
    }

    #main-menu.show {
        display: flex;
        width: 100%;
    }

    .dropdown-content ul li a {
        color: white
    }

    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.05);
    }

    .third-level-content {
        position: static;
        width: 100%;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.1);
    }

    .header .container {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 15px;
    }

    .header-right {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .search {
        width: 100%;
        margin-bottom: 15px;
    }

    .search form {
        width: 100%;
    }

    .search input {
        width: 100%;
    }

    .user-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .header-right {
        flex-direction: column;
        align-items: flex-start;
    }

    .search {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .search form {
        width: 100%;
    }

    .search input {
        width: 100%;
    }

    .user-actions {
        width: 100%;
        margin-top: 10px;
        justify-content: space-between;
    }

    .slider-container {
        margin-bottom: 20px;
    }

    .product-info .price {
        font-size: 1.2rem;
    }

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

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

/* Product Cards */
.product-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.product-slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.product-slider-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex: 0 0 100%;
}

.product-card {
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 5px 15px var(--shadow-color);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.product-quick-info {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.quick-info-item {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    padding: 5px 8px;
    font-size: 0.8rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.quick-info-item i {
    margin-right: 5px;
    color: var(--accent-color);
}

.product-tabs {
    display: flex;
    gap: 5px;
    padding: 10px;
}

.product-tab {
    background-color: var(--secondary-color);
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 3px;
}

.product-info {
    padding: 15px;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.product-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
}

.tax-included {
    font-size: 0.7rem;
    font-weight: normal;
    color: #999;
}

.out-of-stock .product-image {
    position: relative;
}

.stock-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.product-nav-container {
    margin-bottom: 20px;
}

.product-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.slider-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: var(--secondary-color);
}

.slider-pagination {
    display: flex;
    gap: 8px;
    margin: 0 15px;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background-color: var(--primary-color);
    width: 25px;
    border-radius: 5px;
}

/* Ranking Cards */
.ranking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.ranking-card {
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 5px 15px var(--shadow-color);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.rank-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.rank-ribbon {
    position: absolute;
    top: 15px;
    right: -8px;
    background-color: var(--accent-color);
    color: white;
    padding: 3px 10px;
    font-size: 0.8rem;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.rank-ribbon::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent #a07620 transparent transparent;
}

/* Customer Voice Section */
.customer-voice-section {
    margin-bottom: 40px;
    padding: 40px 0;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-container {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    flex: 0 0 100%;
    display: flex;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin: 10px 0;
    position: relative;
    width: 100%;
}

.testimonial-image {
    flex-shrink: 0;
    position: relative;
    margin-right: 30px;
}

.testimonial-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--primary-color);
    color: white;
    font-size: 0.85rem;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 2;
    white-space: nowrap;
    min-width: 70px;
    text-align: center;
}

.testimonial-content {
    flex-grow: 1;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 15px;
    position: absolute;
    top: -10px;
    left: -5px;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    padding-left: 10px;
}

.testimonial-rating {
    color: var(--accent-color);
    margin: 15px 0;
    font-size: 1.1rem;
}

.testimonial-author h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.testimonial-author p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
    padding-left: 0;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.prev-testimonial, .next-testimonial {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-testimonial:hover, .next-testimonial:hover {
    background-color: var(--secondary-color);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
    margin: 0 15px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--primary-color);
    width: 25px;
    border-radius: 5px;
}

/* News Section */
.news {
    margin-bottom: 40px;
}

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

.news-card {
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 5px 15px var(--shadow-color);
    padding: 20px;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.news-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.news-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.news-card p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #666;
}

.news-link {
    color: var(--secondary-color);
    font-weight: bold;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: var(--primary-color);
}

/* News List Style */
.news-list {
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 5px 15px var(--shadow-color);
    overflow: hidden;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background-color: #f9f8f4;
}

.news-item .news-date {
    flex: 0 0 100px;
    margin-bottom: 0;
    font-weight: bold;
}

.news-item .news-title {
    flex: 1;
    margin: 0 20px;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-item .news-link {
    flex: 0 0 100px;
    text-align: right;
}

/* Shop Introduction Section */
.shop-introduction {
    position: relative;
    padding: 60px 0;
    background-color: var(--secondary-color);
    margin-bottom: 0;
    color: white;
}

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

.shop-intro-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.shop-intro-text {
    flex: 1;
}

.shop-intro-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
}

.shop-intro-tagline {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.shop-intro-text p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.shop-intro-image {
    flex: 0 0 300px;
    position: relative;
}

.shop-intro-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.shop-intro-contact {
    width: 100%;
    background-color: var(--primary-color);
    background-image: 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.05'%3E%3Cpath d='M0 0h10v10H0V0zm10 10h10v10H10V10z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 20px 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.shop-intro-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

.shop-intro-contact::after {
    content: '📍';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    opacity: 0.2;
}

.shop-intro-contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.shop-intro-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
}

.shop-intro-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.shop-intro-contact p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 8px 10px;
    border-radius: 6px;
    background-color: rgba(0, 0, 0, 0.1);
}

.shop-intro-contact p:hover {
    transform: translateX(5px);
    background-color: rgba(0, 0, 0, 0.2);
}

.shop-intro-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

.shop-intro-contact a:hover {
    color: var(--accent-color);
}

.shop-intro-contact i {
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.btn-contact {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    margin-top: 18px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-contact:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-contact:hover::before {
    width: 100%;
}

.shop-video-cta {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.video-play-btn, .faq-btn {
    display: flex;
    align-items: center;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.video-play-btn::before, .faq-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
    transition: all 0.4s ease;
    z-index: -1;
}

.video-play-btn:hover::before, .faq-btn:hover::before {
    left: 100%;
}

.video-play-btn:hover, .faq-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.2);
}

.play-icon, .faq-icon {
    margin-right: 12px;
    font-size: 1.1rem;
    color: var(--accent-color);
}

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

.shop-feature {
    text-align: center;
}

.shop-feature i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.shop-feature h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: white;
}

.shop-feature p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Modals */
.video-modal, .faq-modal, .news-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.video-modal.show, .faq-modal.show, .news-modal.show {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-modal.show .modal-overlay,
.faq-modal.show .modal-overlay,
.news-modal.show .modal-overlay {
    opacity: 1;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translate(-50%, -55%);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.video-modal.show .modal-content,
.news-modal.show .modal-content {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.video-container {
    width: 100%;
    padding: 0;
}

.video-container video {
    width: 100%;
    display: block;
}

.faq-container {
    padding: 35px;
    max-height: 80vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
}

.faq-container::-webkit-scrollbar {
    width: 8px;
}

.faq-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.faq-container::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

.faq-container h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.faq-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.faq-item {
    margin-bottom: 18px;
    border: none;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    overflow: hidden;
    background-color: white;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    background-color: white;
}

.faq-question:hover {
    background-color: rgba(var(--primary-color-rgb), 0.05);
}

.faq-question i {
    color: var(--primary-color);
    margin-right: 15px;
    transition: all 0.4s ease;
    font-size: 1.2rem;
    min-width: 20px;
    text-align: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--secondary-color);
    flex: 1;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 12px 25px 13px 19px;
    margin-top: 0;
    display: none;
    border-left: 3px solid var(--primary-color);
    margin-left: 8px;
    background-color: rgba(var(--primary-color-rgb), 0.03);
    border-radius: 0 0 8px 0;
    transition: all 0.5s ease;
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 10px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-item.active {
    box-shadow: 0 5px 20px rgba(var(--primary-color-rgb), 0.15);
}

.faq-item.active .faq-answer {
    display: block;
    color: var(--text-color);
    animation: fadeInDown 0.5s ease forwards;
}

.faq-item.active .faq-question {
    background-color: rgba(var(--primary-color-rgb), 0.08);
    border-radius: 8px 8px 0 0;
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
    font-weight: 600;
}

.faq-item.active .faq-question i {
    transform: rotate(90deg);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(to bottom right, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.close-modal:hover {
    transform: rotate(90deg);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-detail-container {
    padding: 30px;
}

.news-detail-container h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.news-modal-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.news-modal-content {
    line-height: 1.7;
}

.news-modal-content p {
    margin-bottom: 15px;
}

.news-modal-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.news-modal-content ul li {
    margin-bottom: 5px;
}

/* Footer */
footer {
    background: linear-gradient(145deg, #1a2b38, #121921);
    color: white;
    padding: 70px 0 30px;
    position: relative;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    background-size: 200% 100%;
    animation: gradient-shift 8s ease infinite;
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 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.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 0;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section {
    position: relative;
    transition: transform 0.3s ease;
    padding: 0 10px;
}

.footer-section:hover {
    transform: translateY(-5px);
}

.footer-section h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.footer-section:hover h3::after {
    width: 100%;
}

.footer-section h3 i {
    margin-right: 10px;
    background: -webkit-linear-gradient(var(--accent-color), #ffcc66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 14px;
    transition: transform 0.3s ease;
    position: relative;
}

.footer-section ul li:hover {
    transform: translateX(8px);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: block;
    position: relative;
    padding-left: 18px;
}

.footer-section ul li a::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.2rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    left: 5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.social-icons a:hover {
    transform: translateY(-8px) rotate(360deg);
    color: white;
}

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

.social-icons a i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
    position: relative;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 14px 20px;
    border: none;
    font-family: var(--font-main);
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.newsletter-form input:focus {
    background-color: white;
    outline: none;
}

.newsletter-form button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 14px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.newsletter-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.newsletter-form button:hover::before {
    left: 100%;
}

.newsletter-form button:hover {
    box-shadow: 0 0 15px rgba(var(--primary-color-rgb), 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
}

.footer-bottom a:hover::after {
    width: 100%;
}

.payment-methods {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-methods span {
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.payment-methods i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    filter: grayscale(30%);
    padding: 5px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
}

.payment-methods i:hover {
    color: white;
    transform: scale(1.15) translateY(-3px);
    filter: grayscale(0%);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    footer {
        padding: 50px 0 30px;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .payment-methods {
        flex-direction: column;
        align-items: center;
    }

    .payment-methods span {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Go to top button */
.go-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.go-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Responsive adjustments for the new sections */
@media (max-width: 992px) {
    .product-slider-page {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .shop-intro-content {
        flex-direction: column;
    }

    .shop-intro-image {
        flex: 0 0 auto;
    }

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

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

@media (max-width: 576px) {
    .product-slider-page {
        grid-template-columns: 1fr;
    }

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

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

    .testimonial {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonial-image {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .shop-features {
        grid-template-columns: 1fr;
    }

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

.mt-4 {
    margin-top: 25px;
}

.faq-modal .modal-content {
    border-radius: 12px;
    background: linear-gradient(to bottom, #fff, #f8f7f4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -55%) scale(0.95);
}

.faq-modal.show .modal-content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Animation for FAQ items */
.faq-container .faq-item {
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUpItems 0.5s forwards;
}

@keyframes fadeInUpItems {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.faq-container .faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-container .faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-container .faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-container .faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.faq-container .faq-item:nth-child(5) {
    animation-delay: 0.5s;
}

.faq-container .faq-item:nth-child(6) {
    animation-delay: 0.6s;
}

.faq-container .faq-item:nth-child(7) {
    animation-delay: 0.7s;
}

.faq-container .faq-item:nth-child(8) {
    animation-delay: 0.8s;
}

/* Product List Page Styles */
.product-list-header {
    margin-bottom: 30px;
}

.product-list-header h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.product-list-header .subtitle {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-left: 10px;
    font-weight: normal;
}

.product-list-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.product-filter-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f8f4;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-filter-section.filter-changed {
    background-color: #f0ece0;
}

.product-count {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.product-display-options {
    display: flex;
    gap: 20px;
}

.product-display-dropdown, .product-sort-dropdown {
    display: flex;
    align-items: center;
}

.product-display-dropdown label, .product-sort-dropdown label {
    margin-right: 10px;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.custom-select {
    position: relative;
    min-width: 120px;
}

.filter-select {
    width: 100%;
    padding: 8px 30px 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    appearance: none;
    background-color: white;
    font-family: var(--font-main);
    font-size: 0.9rem;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--primary-color);
    font-size: 0.8rem;
}

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

.product-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.product-pagination a, .product-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: white;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.product-pagination a.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.product-pagination a:hover:not(.active) {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

.product-pagination .pagination-dots {
    border: none;
    background-color: transparent;
}

.product-pagination .next-page {
    width: 40px;
    height: 40px;
}

/* No products found message */
.no-products-found {
    background-color: #f9f8f4;
    border-radius: 8px;
    padding: 50px 30px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.no-products-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 20px;
}

.no-products-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.no-products-message {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.no-products-actions {
    margin-top: 20px;
}

.no-products-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.no-products-btn i {
    margin-right: 8px;
}

.no-products-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.secondary-btn {
    background-color: var(--secondary-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-filter-section {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .product-display-options {
        width: 100%;
        justify-content: space-between;
    }
}

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

    .product-display-options {
        flex-direction: column;
        gap: 10px;
    }

    .product-display-dropdown, .product-sort-dropdown {
        width: 100%;
    }

    .custom-select {
        width: 100%;
    }

    .product-list-header h1 {
        font-size: 1.5rem;
    }
}

/* Shop Features New Section */
.shop-features-section {
    padding: 60px 0;
    background-color: #f9f7f3;
    position: relative;
    overflow: hidden;
}

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

.features-title {
    margin-bottom: 40px;
}

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

.shop-feature-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid transparent;
}

.shop-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shop-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--primary-color);
}

.shop-feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.shop-feature-card:hover .feature-icon {
    background-color: var(--primary-color);
}

.feature-icon i {
    font-size: 26px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.shop-feature-card:hover .feature-icon i {
    color: white;
}

.feature-content h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
    font-family: var(--font-heading);
}

.feature-content p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .shop-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .shop-features-grid {
        grid-template-columns: 1fr;
    }

    .shop-features-section {
        padding: 40px 0;
    }
}

/* Gallery Lightbox Styles */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 10001;
    transition: transform 0.3s ease;
    transform: scale(0.95);
}

.lightbox-modal.show .lightbox-content {
    transform: scale(1);
}

.lightbox-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85vh;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.lightbox-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(0);
    animation: imageFadeIn 0.3s ease forwards;
}

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

.close-lightbox {
    position: absolute;
    top: -50px;
    right: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10002;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-lightbox:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.lightbox-nav {
    position: absolute;
    bottom: -70px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-prev:active,
.lightbox-next:active {
    transform: translateY(0);
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 33, 33, 0.97);
    z-index: 1000;
    overflow-y: auto;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.mobile-menu-popup.show {
    opacity: 1;
    visibility: visible;
    display: block !important;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.2s;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-content {
    padding: 70px 20px 40px;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-content > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-content a {
    display: block;
    padding: 15px 10px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s;
}

.mobile-menu-content a:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-menu-content .dropdown-menu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-content .dropdown-content {
    display: none;
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 15px;
}

.mobile-menu-content .dropdown-content.show {
    display: block;
}

.mobile-menu-content .second-level > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
}

.mobile-menu-content .third-level-content {
    display: none;
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 15px;
}

.mobile-menu-content .third-level-content.show {
    display: block;
}

.mobile-menu-content .third-level-content a {
    padding-left: 25px;
}

/* Fix: Ensure third-level-content is hidden by default */
.mobile-menu-content .second-level .third-level-content {
    display: none !important;
}

/* Only show third-level-content when parent is active or has show class */
.mobile-menu-content .second-level.active .third-level-content,
.mobile-menu-content .second-level .third-level-content.show {
    display: block !important;
}

/* Fix: Ensure dropdown-content is hidden by default in mobile menu */
.mobile-menu-content .dropdown-menu .dropdown-content {
    display: none !important;
}

/* Only show dropdown-content when parent is active or has show class */
.mobile-menu-content .dropdown-menu.active .dropdown-content,
.mobile-menu-content .dropdown-menu .dropdown-content.show {
    display: block !important;
}

.mobile-menu-content .dropdown-indicator {
    transition: transform 0.3s;
}

.mobile-menu-content .dropdown-menu.active > a .dropdown-indicator,
.mobile-menu-content .second-level.active > a .dropdown-indicator {
    transform: rotate(90deg);
}

/* Media query for mobile devices */
@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    /* Hide main navigation when mobile menu is active */
    .mobile-menu-popup.show + .main-nav .container > ul {
        display: none !important;
    }

    /* Force hide main navigation on mobile */
    body.mobile-menu-active .main-nav .container > ul {
        display: none !important;
    }

    /* Disable hover effect for second-level in mobile menu */
    .mobile-menu-content .second-level:hover .third-level-content {
        display: none !important;
    }

    /* Ensure only active or show class can display third-level-content */
    .mobile-menu-content .second-level.active .third-level-content,
    .mobile-menu-content .second-level .third-level-content.show {
        display: block !important;
    }

    /* Disable hover effect for dropdown-menu in mobile menu */
    .mobile-menu-content .dropdown-menu:hover .dropdown-content {
        display: none !important;
    }

    /* Ensure only active or show class can display dropdown-content */
    .mobile-menu-content .dropdown-menu.active .dropdown-content,
    .mobile-menu-content .dropdown-menu .dropdown-content.show {
        display: block !important;
    }
}

/* Product Tag Styles */
.product-tab {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75rem;
    margin-right: 5px;
    margin-bottom: 5px;
    border-radius: 4px;
    font-weight: 600;
    background-color: #6a7d94;
    color: #fff;
}

/* Different tag colors */
.product-tab:nth-child(1) {
    background-color: #435878;
}

.product-tab:nth-child(2) {
    background-color: #826b5f;
}

/* Enhanced Ranking Styles */
.rank-badge {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

.rank-1 .rank-badge {
    background: linear-gradient(135deg, #e5b93d, #f1c40f);
}

.rank-2 .rank-badge {
    background: linear-gradient(135deg, #95a5a6, #bdc3c7);
}

.rank-3 .rank-badge {
    background: linear-gradient(135deg, #cd7f32, #e67e22);
}

.rank-ribbon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 4px;
    z-index: 4;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rank-1 .rank-ribbon {
    background: linear-gradient(90deg, rgba(229, 185, 61, 0.85), rgba(241, 196, 15, 0.85));
}

.rank-2 .rank-ribbon {
    background: linear-gradient(90deg, rgba(149, 165, 166, 0.85), rgba(189, 195, 199, 0.85));
}

.rank-3 .rank-ribbon {
    background: linear-gradient(90deg, rgba(205, 127, 50, 0.85), rgba(230, 126, 34, 0.85));
}

.quick-info-item {
    margin-bottom: 3px;
    background: rgba(0, 0, 0, 0.7);
    padding: 3px 8px;
    font-size: 0.75rem;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.quick-info-item:first-child {
    background: rgba(241, 196, 15, 0.9);
    color: #000;
    font-weight: 600;
}

.quick-info-item:nth-child(2) {
    animation: fadeInOut 3s infinite;
}

@keyframes fadeInOut {
    0% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.7;
    }
}

/* Hover effect for ranking cards */
.ranking-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ranking-card:hover .rank-badge {
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    animation: none;
}

.ranking-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Payment Methods UI Fix */
.payment-methods {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-methods i {
    font-size: 24px;
    margin-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lightbox-content {
        width: 98%;
    }

    .lightbox-container {
        height: 75vh;
    }

    .lightbox-nav {
        bottom: -60px;
        gap: 15px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
    }

    .close-lightbox {
        top: -45px;
        right: 0;
    }

    .rank-badge {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        top: -10px;
        left: -10px;
    }

    /* Hide sidebar on mobile */
    .sidebar {
        display: none;
    }

    .main-content {
        display: block;
    }

    .content {
        width: 100%;
    }

    /* Payment methods in one row on mobile */
    .payment-methods {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        width: 100%;
        padding-bottom: 10px;
        justify-content: flex-start;
    }

    .payment-methods span {
        margin-right: 8px;
        white-space: nowrap;
    }

    .payment-methods i {
        font-size: 20px;
        margin-right: 8px;
    }

    /* Mobile menu adjustments */
    .menu-toggle {
        display: block;
        position: absolute;
        left: 15px;
        top: 15px;
    }

    .main-nav .container > ul {
        display: none;
    }
}

/* News List Style */
.news-list {
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 5px 15px var(--shadow-color);
    overflow: hidden;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background-color: #f9f8f4;
}

.news-item .news-date {
    flex: 0 0 100px;
    margin-bottom: 0;
    font-weight: bold;
}

.news-item .news-title {
    flex: 1;
    margin: 0 20px;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-item .news-link {
    flex: 0 0 100px;
    text-align: right;
}

/* Mobile responsive news styles */
@media (max-width: 767px) {
    .news-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    .news-item .news-date {
        flex: none;
        margin-bottom: 8px;
        font-size: 0.9rem;
    }

    .news-item .news-title {
        flex: none;
        width: 100%;
        margin: 0 0 10px 0;
        white-space: normal;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .news-item .news-link {
        flex: none;
        width: 100%;
        text-align: right;
        font-size: 0.9rem;
    }

    /* Hide payment methods in footer on mobile */
    .footer-bottom .payment-methods {
        display: none !important;
    }

    /* Optimize FAQ modal for mobile */
    .faq-container {
        padding: 20px 15px;
        max-height: 85vh;
    }

    .faq-container h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }

    .faq-question {
        padding: 12px 10px;
    }

    .faq-question i {
        margin-right: 10px;
        font-size: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 10px 15px 10px 15px;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(to bottom right, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.news-modal .close-modal {
    top: 10px;
    right: 10px;
    background: #111;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
    .news-modal .close-modal {
        top: 0;
        right: 0;
    }
}

.news-detail-container {
    padding: 30px;
}

.news-modal .news-detail-container {
    padding: 30px 30px 30px 30px;
}

@media (max-width: 767px) {
    .news-modal .close-modal {
        top: 0;
        right: 0;
    }

    .news-modal .news-detail-container {
        padding-top: 40px;
    }
}

/* CATEGORIES section styles */
.categories-section {
    margin: 60px 0;
}

.categories-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.category-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px var(--shadow-color);
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.category-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-item:hover .category-image img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    padding: 30px 20px 20px;
    transition: all 0.3s ease;
}

.category-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    display: block;
    text-align: center;
}

@media (max-width: 992px) {
    .categories-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .categories-container {
        grid-template-columns: 1fr;
    }
}

/* NEW ARRIVALS section styles */
.new-arrivals-section {
    margin: 60px 0;
}

.new-arrivals-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.new-arrivals-container {
    display: flex;
    position: relative;
    min-height: 450px;
}

.new-arrivals-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex: 0 0 100%;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 100%;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.new-arrivals-page.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    transform: translateY(0);
}

/* Navigation styles */
.new-arrivals-section .slider-btn {
    transition: all 0.3s ease;
}

.new-arrivals-section .slider-btn:hover {
    transform: scale(1.1);
    background-color: var(--secondary-color);
}

.new-arrivals-section .pagination-dot {
    transition: all 0.3s ease;
}

.new-arrivals-section .pagination-dot.active {
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .new-arrivals-page {
        grid-template-columns: repeat(2, 1fr);
    }

    .new-arrivals-container {
        min-height: 750px;
    }
}

@media (max-width: 576px) {
    .new-arrivals-page {
        grid-template-columns: 1fr;
    }

    .new-arrivals-container {
        min-height: 1400px;
    }
}

/* Main Gallery Section styles */
.main-gallery-section {
    margin: 30px 0;
}

.main-gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.main-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1/1;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s ease;
}

.main-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-color);
}

.main-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.main-gallery-item:hover img {
    transform: scale(1.05);
}

.main-gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--primary-color-rgb), 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.main-gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.main-gallery-item .gallery-overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.main-gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-view-more {
    text-align: center;
    margin-top: 30px;
}

.btn-view-all {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view-all i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-view-all:hover {
    background-color: var(--primary-color);
    color: white;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
    .main-gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .main-gallery-container {
        grid-template-columns: 1fr;
    }
}

.add-section-button {
    display: none !important;
}

#page_homepage .add-section-button {
    display: flex !important;
}