:root {
    --primary-blue: #4285f4;
    --secondary-blue: #2cc6ff;
    --search-blue: #2b61d6;
    --bg-gray: #f7f9fc;
    --logo-dark-blue: #003366; /* Deep blue */
    --logo-orange: #ff6600; /* Vibrant orange */
}

.btn-info {
    background-color: #17a2b8;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-info:hover {
    background-color: #138496;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Cairo", sans-serif;
}

html,
body {
    background-color: var(--bg-gray);
    color: #333;
    overflow-x: hidden;
}

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

/* --- الهيدر العلوي --- */
.main-header {
    background: #fff;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container img {
    height: 50px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.main-nav a {
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--primary-blue);
}

.header-actions .login-btn {
    background: var(--primary-blue);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 700;
    transition: background-color 0.3s;
}

.header-actions .login-btn:hover {
    background: var(--search-blue);
}

/* Hero Header */
.hero-header {
    background: linear-gradient(to bottom, #4b89f5, var(--bg-gray));
    color: white;
    text-align: center;
    padding: 40px 20px 80px;
}

.hero-header h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero-header p {
    max-width: 1000px;
    margin: 0 auto 8px;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* 3D Coverflow Carousel */
.carousel-3d-container {
    position: relative;
    width: 100%;
    max-width: 1200px; /* Adjust as needed */
    height: 250px;
    margin: 40px auto;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.carousel-3d-item {
    position: absolute;
    width: 90%; /* Center item width */
    height: 100%;
    background: #fff;
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease-in-out;
    opacity: 0.6;
    z-index: 0;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
}

.carousel-3d-item.active {
    opacity: 1;
    z-index: 10;
    transform: translateX(0) scale(1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5); /* Highlight active */
}

.carousel-3d-item.prev {
    transform: translateX(-55%) scale(0.75) rotateY(15deg); /* Move left, scale down, rotate */
    z-index: 5;
    opacity: 0.8;
}

.carousel-3d-item.next {
    transform: translateX(55%) scale(0.75) rotateY(-15deg); /* Move right, scale down, rotate */
    z-index: 5;
    opacity: 0.8;
}

/* For items strictly behind */
.carousel-3d-item.hidden-left {
    transform: translateX(-80%) scale(0.6);
    opacity: 0;
    z-index: 0;
}

.carousel-3d-item.hidden-right {
    transform: translateX(80%) scale(0.6);
    opacity: 0;
    z-index: 0;
}

/* Content inside the banner (if any text) */
.carousel-content {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s 0.2s;
}

.carousel-3d-item.active .carousel-content {
    opacity: 1;
}

/* Hide old styles if necessary, or just overwrite */
.banners-wrapper {
    display: none; /* Disable old wrapper */
}

@keyframes slideBanner {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

.banner-side {
    width: 220px;
    height: 140px;
    border-radius: 12px;
    opacity: 0.9;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease-in-out;
}

.banner-side.left {
    background: linear-gradient(135deg, #005c97, #363795);
}

.banner-side.right {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.banner-content {
    flex: 1;
    text-align: right;
}

.banner-content h3 {
    font-size: 1rem;
    color: #444;
    margin-bottom: 5px;
}

.banner-content .discount {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    line-height: 1.1;
}

.banner-content .discount span {
    color: #e11d48;
}

.banner-content p {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

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

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

.dots-container {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 15px 0 30px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e0e0e0;
}

.dot.active {
    background: #f59e0b;
    width: 18px;
    border-radius: 10px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 30px 0 40px;
}

.cta-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.cta-section p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.cta-btn {
    background: linear-gradient(90deg, #4285f4, #2cc6ff);
    color: white;
    border: none;
    padding: 10px 45px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.cta-btn:hover {
    transform: scale(1.05);
}

.cta-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(45deg);
    animation: gleam 4s infinite;
}

@keyframes gleam {
    0% {
        left: -100%;
    }
    50% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

/* Categories */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.categories-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.categories-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 15px;
    padding: 10px 5px;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
    flex: 1;
}

.categories-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.slider-arrow {
    background: white;
    border: 1px solid #eee;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--logo-dark-blue);
    flex-shrink: 0;
}

.slider-arrow:hover {
    background: var(--logo-dark-blue);
    color: white;
    transform: scale(1.1);
}

.category-item {
    background: white;
    border-radius: 12px;
    padding: 18px 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    border: 1px solid #f0f0f0;
    transition:
        transform 0.3s ease,
        border-radius 0.3s ease,
        box-shadow 0.3s ease;
    flex: 0 0 140px;
}

.category-item:hover {
    transform: scale(0.95);
    border-radius: 20px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
}

.category-icon-box {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.category-item span {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #666;
}

/* Search Bar */
.search-bar-wrapper {
    background: white;
    border-radius: 50px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    border: 1px solid #eee;
}

.sort-btn,
.filter-item,
.search-btn {
    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.sort-btn:hover,
.filter-item:hover {
    transform: scale(1.05);
}

.search-btn:hover {
    transform: scale(1.03);
    background-color: #1e4ca1;
}

.sort-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 15px;
    color: #333;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 8px;
    border-right: 1px solid #eee;
    margin-right: 10px;
}

.search-input-group input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.9rem;
    color: #666;
}

.search-btn {
    background: #2b61d6;
    color: white;
    border: none;
    padding: 8px 30px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
}

.filter-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 15px;
    border-right: 1px solid #eee;
    margin-right: 10px;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #333;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
}

.location-dot {
    color: #ef4444;
}

/* Listings Grid */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.listing-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.listing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.listing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.card-main {
    padding: 45px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
}

.card-main h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-top: 15px;
}

.card-main p {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e3a8a;
    letter-spacing: 0.5px;
}

.card-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-top: 1px solid #f5f5f5;
}

.info-right {
    font-weight: 800;
    font-size: 0.95rem;
    color: #333;
}

.info-left {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #333;
    font-size: 0.9rem;
    font-weight: 700;
}

.card-footer-row {
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.discount-pill {
    background: #0ea5e9;
    color: white;
    padding: 8px 0;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    flex: 1;
    text-align: center;
    margin-left: 10px;
}

.available-on {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #333;
}

.card-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
}

.card-mada .card-circle {
    background: #2563eb;
}

.card-hamam .card-circle {
    background: #713f12;
}

.card-qandil .card-circle {
    background: #2563eb;
}

/* --- الفوتر --- */
.main-footer {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 50px 5% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column .footer-logo {
    height: 60px;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #94a3b8;
    max-width: 300px;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column ul a {
    color: #94a3b8;
    transition:
        color 0.3s,
        padding-right 0.3s;
}

.footer-column ul a:hover {
    color: #fff;
    padding-right: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #94a3b8;
    font-size: 1.3rem;
    transition:
        color 0.3s,
        transform 0.3s;
}

.social-icons a:hover {
    color: var(--primary-blue);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    font-size: 0.9rem;
    color: #94a3b8;
}

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

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

    .banner-side {
        display: none;
    }

    .main-nav {
        display: none;
    }
}

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

    .search-bar-wrapper {
        flex-direction: column;
        border-radius: 20px;
        height: auto;
        gap: 10px;
        padding: 15px;
    }

    .sort-btn,
    .filter-actions,
    .search-input-group {
        border: none;
        margin: 0;
        padding: 5px 0;
        width: 100%;
    }
}

/* --- Shop Detail Page Styles --- */
.store-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.store-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(
            --hero-bg,
            url("https://images.unsplash.com/photo-1556911220-bff31c812dba?q=80&w=2970&auto=format&fit=crop")
        )
        no-repeat center center/cover;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    z-index: 1;
}

.store-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.store-hero-logo {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    object-fit: contain;
}

.store-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    color: white;
}

.store-hero-category {
    background: var(--logo-orange);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
}

.info-bar {
    background: #fff;
    margin: -50px auto 40px;
    position: relative;
    z-index: 10;
    max-width: 900px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    text-align: center;
}

.info-bar-item {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none; /* For anchor tags */
    color: inherit;
    cursor: default; /* Default for non-actionable */
}

a.info-bar-item {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

a.info-bar-item:hover {
    background-color: #f9f9f9;
}

.info-bar-item:not(:last-child) {
    border-left: 1px solid #eee;
}

.info-bar-item i {
    font-size: 1.8rem;
    color: var(--logo-dark-blue);
    transition: transform 0.3s ease;
}

.info-bar-item:hover i {
    transform: translateY(-5px);
}

.info-bar-item .discount-icon {
    color: var(--logo-orange);
}

.info-bar-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #555;
}

.info-bar-item p {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111;
}

.page-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.breadcrumbs a:hover {
    color: var(--logo-dark-blue);
}

.breadcrumbs i {
    font-size: 0.7rem;
}

.store-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: flex-start;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-section {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.content-section:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.content-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-right: 4px solid var(--logo-dark-blue);
    padding-right: 15px;
}

.main-content p.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.discount-notice {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
}

.discount-notice h4 {
    margin-bottom: 10px;
}

.discount-notice p {
    margin-bottom: 5px;
    font-weight: 600;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avg-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avg-rating .score {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--logo-dark-blue);
}

.avg-rating .stars {
    color: var(--logo-orange);
}

.total-reviews {
    font-weight: 600;
    color: #777;
}

.review {
    border-top: 1px solid #f0f0f0;
    padding: 15px 0;
}

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

.review-author {
    font-weight: 700;
}

.review-stars {
    color: var(--logo-orange);
    font-size: 0.9rem;
}

.review-text {
    color: #555;
    margin-bottom: 10px;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #888;
}

.like-btn {
    cursor: pointer;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.like-btn:hover {
    transform: scale(1.1);
}

.like-btn.liked {
    color: var(--logo-dark-blue);
}

.add-review-form {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.add-review-form h4 {
    margin-bottom: 10px;
}

.add-review-form .form-group {
    margin-bottom: 10px;
}

.add-review-form input,
.add-review-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.add-review-form input:focus,
.add-review-form textarea:focus {
    border-color: var(--logo-dark-blue);
    box-shadow: 0 0 5px rgba(41, 69, 177, 0.2);
    outline: none;
}

.submit-review-btn {
    background: var(--logo-dark-blue);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.submit-review-btn:hover {
    background-color: #1c307c;
    transform: translateY(-2px);
}

.sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.widget {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.widget:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.widget h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.widget ul {
    list-style: none;
}

.widget ul li {
    margin-bottom: 15px;
}

.widget .contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.widget .contact-list li i {
    color: var(--logo-dark-blue);
    font-size: 1.1rem;
    width: 20px;
}

.widget .filter-list a {
    display: block;
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

.widget .filter-list a:hover,
.widget .filter-list a.active {
    background: var(--bg-gray);
    color: var(--logo-dark-blue);
}

.map-container {
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.sidebar-banner {
    width: 100%;
    border-radius: 12px;
}

.cta-btn {
    background: linear-gradient(
        90deg,
        var(--logo-dark-blue),
        var(--logo-light-blue)
    );
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(41, 69, 177, 0.3);
}

.card-availability {
    /* background: var(--logo-dark-blue); Removed to let btn-info take precedence */
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .store-content-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }
}
