/* =========================================================
   RESET & GENERAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #f6f7f8;
    color: #171717;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}


/* =========================================================
   FONTS
========================================================= */

@font-face {
    font-family: "myfont5";
    src: url("/sell-plateform/fonts/logo/Nitro-OpliqueL-fixed.otf");
}

@font-face {
    font-family: "myfont6";
    src: url("/sell-plateform/fonts/FormaDJRArabicDisplay-Regular-Testing.otf");
}

@font-face {
    font-family: "myfont7";
    src: url("/sell-plateform/fonts/Graphik Arabic SemiBold.ttf");
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    min-height: 70px;
    margin: auto;
    padding: 12px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.logo {
    display: inline-flex;
    align-items: center;

    text-decoration: none;

    color: #111111;

    font-family: "myfont5", Arial, sans-serif;

    font-size: 22px;
    font-weight: bold;

    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.main-nav a {
    text-decoration: none;

    color: #444444;

    font-family:
        "myfont6",
        Arial,
        sans-serif;

    font-size: 15px;

    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #16834a;
}


/* =========================================================
   MOBILE MENU
========================================================= */

#mobileMenuButton {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid #eeeeee;
    border-radius: 10px;

    background: #ffffff;

    font-size: 23px;
}

.mobile-menu {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    background: #ffffff;

    text-align: center;

    padding: 55px 20px 50px;
}

.hero h1 {
    margin-bottom: 15px;

    font-family:
        "myfont7",
        Arial,
        sans-serif;

    font-size: 42px;

    line-height: 1.4;
}

.hero p {
    max-width: 650px;

    margin: 0 auto 28px;

    color: #666666;

    font-size: 17px;

    line-height: 1.9;
}


/* =========================================================
   HERO BUTTON
========================================================= */

.sell-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 22px;

    background: #111;

    color: #ffffff;

    text-decoration: none;

    border-radius: 11px;

    font-size: 15px;
    font-weight: bold;

    transition:
        opacity 0.2s ease,
        transform 0.15s ease;
}

.sell-button:hover {
    opacity: 0.9;
}

.sell-button:active {
    transform: scale(0.98);
}


/* =========================================================
   SEARCH
========================================================= */

.search-section {
    max-width: 800px;

    margin: -10px auto 0;

    padding: 0 20px;

    position: relative;

    z-index: 5;
}

.search-box {
    width: 100%;

    min-height: 55px;

    padding: 0 20px;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 15px;

    outline: none;

    font-size: 15px;

    box-shadow:
        0 8px 25px rgba(
            0,
            0,
            0,
            0.06
        );
}

.search-box:focus {
    border-color: #16834a;

    box-shadow:
        0 8px 25px rgba(
            22,
            131,
            74,
            0.10
        );
}


/* =========================================================
   CATEGORIES
========================================================= */

.categories {
    max-width: 1200px;

    margin: 25px auto 0;

    padding: 0 20px;

    display: flex;

    gap: 10px;

    overflow-x: auto;

    scrollbar-width: none;
}

.categories::-webkit-scrollbar {
    display: none;
}

.category-button {
    flex: 0 0 auto;

    min-height: 40px;

    padding: 0 17px;

    border: 1px solid #e4e4e4;

    border-radius: 20px;

    background: #ffffff;

    color: #444444;

    font-size: 13px;

    white-space: nowrap;
}

.category-button:hover,
.category-button.active {
    background: #16834a;

    color: #ffffff;

    border-color: #16834a;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.products-section,
.stores-section {
    max-width: 1200px;

    margin: 50px auto;

    padding: 0 20px;
}

.products-section h2,
.stores-section h2 {
    margin-bottom: 25px;

    font-size: 28px;
}


/* =========================================================
   GRID
========================================================= */

.products-container,
.stores-container {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {
    min-width: 0;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 5px 20px rgba(
            0,
            0,
            0,
            0.04
        );

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 28px rgba(
            0,
            0,
            0,
            0.07
        );
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.product-image {
    width: 100%;

    height: 260px;

    overflow: hidden;

    background: #eeeeee;
}

.product-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}


/* =========================================================
   PRODUCT SLIDER
========================================================= */

.product-image-slider {
    position: relative;

    width: 100%;

    height: 260px;

    overflow: hidden;

    background: #eeeeee;
}

.product-slide {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: none;
}

.product-slide.active {
    display: block;
}

.slider-button {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 34px;
    height: 34px;

    border: none;

    border-radius: 50%;

    background:
        rgba(
            0,
            0,
            0,
            0.5
        );

    color: #ffffff;

    font-size: 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 3;
}

.slider-button:hover {
    background:
        rgba(
            0,
            0,
            0,
            0.75
        );
}

.slider-prev {
    right: 10px;
}

.slider-next {
    left: 10px;
}

.slider-dots {
    position: absolute;

    bottom: 9px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 5px;

    z-index: 3;
}

.slider-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #ffffff;

    opacity: 0.55;
}

.slider-dot.active {
    width: 18px;

    border-radius: 5px;

    opacity: 1;
}


/* =========================================================
   PRODUCT INFO
========================================================= */

.product-info {
    padding: 15px;
}

.product-info h3 {
    margin: 0 0 7px;

    font-size: 17px;

    line-height: 1.5;
}

.product-info h3 a {
    text-decoration: none;
}

.product-info h3 a:hover {
    color: #16834a;
}

.product-info p {
    margin: 0 0 13px;

    color: #777777;

    font-size: 13px;

    line-height: 1.7;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* =========================================================
   PRODUCT BOTTOM
========================================================= */

.product-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;
}

.price {
    color: #16834a;

    font-size: 19px;

    font-weight: 800;

    white-space: nowrap;
}

.contact-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 40px;

    padding: 0 14px;

    background: #16834a;

    color: #ffffff;

    text-decoration: none;

    border-radius: 10px;

    font-size: 13px;

    font-weight: bold;

    white-space: nowrap;
}

.contact-button:hover {
    opacity: 0.9;
}


/* =========================================================
   STORE CARD
   نفس أسلوب المنتجات
========================================================= */

.store-card {
    min-width: 0;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 5px 20px rgba(
            0,
            0,
            0,
            0.04
        );

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.store-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 28px rgba(
            0,
            0,
            0,
            0.07
        );
}


/* =========================================================
   STORE IMAGE
========================================================= */

.store-image {
    width: 100%;

    height: 260px;

    overflow: hidden;

    background: #eeeeee;
}

.store-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.3s ease;
}

.store-card:hover .store-image img {
    transform: scale(1.03);
}


/* =========================================================
   STORE INFO
========================================================= */

.store-info {
    padding: 15px;
}

.store-info h3 {
    margin: 0 0 7px;

    font-size: 17px;

    line-height: 1.5;
}

.store-info h3 a {
    text-decoration: none;
}

.store-info h3 a:hover {
    color: #16834a;
}

.store-info p {
    margin: 0 0 13px;

    color: #777777;

    font-size: 13px;

    line-height: 1.7;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* =========================================================
   STORE BUTTONS
========================================================= */

.store-button {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    min-height: 42px;

    padding: 0 12px;

    background: #16834a;

    color: #ffffff;

    text-decoration: none;

    border-radius: 10px;

    font-size: 13px;

    font-weight: bold;
}

.store-button:hover {
    opacity: 0.9;
}

.store-buttons {
    display: flex;

    align-items: center;

    gap: 10px;

    flex-wrap: wrap;
}

.share-store-button,
.share-product-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 42px;

    padding: 0 16px;

    background: #eeeeee;

    color: #222222;

    border: none;

    border-radius: 10px;

    font-size: 14px;

    font-family: inherit;
}

.share-store-button:hover,
.share-product-button:hover {
    background: #dddddd;
}


/* =========================================================
   EMPTY STATE
========================================================= */

.empty-state {
    padding: 45px 20px;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 18px;

    text-align: center;

    color: #777777;
}

.empty-state h3 {
    margin-bottom: 8px;

    color: #222222;
}

.empty-state p {
    font-size: 14px;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.breadcrumb {
    max-width: 1200px;

    margin: 25px auto 0;

    padding: 0 20px;

    color: #777777;

    font-size: 13px;
}

.breadcrumb a {
    color: #555555;

    text-decoration: none;
}

.breadcrumb a:hover {
    color: #16834a;
}


/* =========================================================
   BACK BUTTON
========================================================= */

.back-button {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 22px;

    color: #555555;

    text-decoration: none;

    font-size: 14px;

    font-weight: bold;
}

.back-button:hover {
    color: #16834a;
}


/* =========================================================
   PRODUCT PAGE
========================================================= */

.product-page {
    max-width: 1200px;

    margin: 40px auto;

    padding: 0 20px;
}

.product-details {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 45px;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 22px;

    padding: 25px;
}


/* =========================================================
   PRODUCT GALLERY
========================================================= */

.product-gallery {
    min-width: 0;
}

.product-main-image {
    width: 100%;

    height: 500px;

    background: #eeeeee;

    border-radius: 17px;

    overflow: hidden;
}

.product-main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
}

.product-thumbnails {
    display: flex;

    gap: 10px;

    margin-top: 12px;

    overflow-x: auto;
}

.product-thumbnail {
    width: 75px;
    height: 75px;

    flex: 0 0 auto;

    border: 2px solid transparent;

    border-radius: 10px;

    overflow: hidden;

    background: #eeeeee;

    cursor: pointer;
}

.product-thumbnail.active {
    border-color: #16834a;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   PRODUCT DETAILS CONTENT
========================================================= */

.product-details-content {
    display: flex;

    flex-direction: column;

    justify-content: center;
}

.product-details-content h1 {
    margin-bottom: 15px;

    font-size: 32px;

    line-height: 1.5;
}

.product-description {
    margin-bottom: 22px;

    color: #666666;

    font-size: 15px;

    line-height: 2;
}

.product-price-box {
    margin-bottom: 20px;

    padding: 17px;

    background: #f5faf7;

    border-radius: 14px;
}

.product-price-label {
    display: block;

    margin-bottom: 4px;

    color: #777777;

    font-size: 13px;
}

.product-page-price {
    color: #16834a;

    font-size: 28px;

    font-weight: 800;
}

.product-seller {
    margin-bottom: 22px;

    padding: 14px 16px;

    background: #f7f7f7;

    border-radius: 12px;

    font-size: 14px;
}

.product-seller a {
    color: #16834a;

    font-weight: bold;

    text-decoration: none;
}

.product-actions {
    display: flex;

    gap: 10px;

    flex-wrap: wrap;
}

.whatsapp-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding: 0 20px;

    background: #16834a;

    color: #ffffff;

    border: none;

    border-radius: 11px;

    text-decoration: none;

    font-size: 15px;

    font-weight: bold;
}

.whatsapp-button:hover {
    opacity: 0.9;
}


/* =========================================================
   STORE PAGE
========================================================= */

.store-page {
    max-width: 1200px;

    margin: 40px auto;

    padding: 0 20px;
}

.store-profile {
    display: grid;

    grid-template-columns:
        280px
        minmax(0, 1fr);

    gap: 25px;

    padding: 25px;

    margin-bottom: 40px;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 22px;
}

.store-profile-image {
    width: 100%;

    height: 230px;

    border-radius: 16px;

    overflow: hidden;

    background: #eeeeee;
}

.store-profile-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.store-profile-content {
    display: flex;

    flex-direction: column;

    justify-content: center;
}

.store-profile-content h1 {
    margin-bottom: 10px;

    font-size: 32px;
}

.store-profile-content p {
    margin-bottom: 18px;

    color: #666666;

    line-height: 1.9;
}

.store-products-title {
    margin-bottom: 25px;

    font-size: 28px;
}


/* =========================================================
   STORE PRODUCT GRID
========================================================= */

.store-products {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   STORE LINK MODAL
========================================================= */

.store-link-modal {
    display: none;

    position: fixed;

    inset: 0;

    background:
        rgba(
            0,
            0,
            0,
            0.5
        );

    align-items: center;

    justify-content: center;

    z-index: 9999;

    padding: 20px;
}

.store-link-box {
    position: relative;

    width: 100%;

    max-width: 500px;

    background: #ffffff;

    padding: 25px;

    border-radius: 20px;

    box-shadow:
        0 10px 40px rgba(
            0,
            0,
            0,
            0.2
        );
}

.store-link-box h2 {
    margin-bottom: 20px;

    font-size: 22px;
}

.store-link-box input {
    width: 100%;

    padding: 12px;

    margin-bottom: 12px;

    border: 1px solid #dddddd;

    border-radius: 10px;

    outline: none;

    font-size: 15px;

    direction: ltr;
}

.store-link-box input:focus {
    border-color: #16834a;
}

.copy-store-link {
    width: 100%;

    min-height: 45px;

    padding: 0 12px;

    border: none;

    border-radius: 10px;

    background: #16834a;

    color: #ffffff;

    font-size: 15px;

    font-family: inherit;
}

.copy-store-link:hover {
    opacity: 0.9;
}

.close-store-link {
    position: absolute;

    top: 10px;

    left: 12px;

    width: 35px;
    height: 35px;

    border: none;

    border-radius: 50%;

    background: #eeeeee;

    color: #555555;

    font-size: 22px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    margin-top: 70px;

    padding: 35px 20px;

    background: #ffffff;

    border-top: 1px solid #eeeeee;

    text-align: center;

    color: #777777;

    font-size: 13px;
}

.site-footer a {
    color: #16834a;

    text-decoration: none;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1000px) {

    .products-container,
    .stores-container,
    .store-products {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .product-details {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        gap: 25px;
    }

    .product-main-image {
        height: 420px;
    }

}


/* =========================================================
   RESPONSIVE - SMALL TABLET
========================================================= */

@media (max-width: 800px) {

    .header-container {
        padding: 12px 15px;
    }

    .main-nav {
        gap: 15px;
    }

    .main-nav a {
        font-size: 14px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .products-container,
    .stores-container,
    .store-products {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .product-details {
        grid-template-columns: 1fr;
    }

    .product-main-image {
        height: 450px;
    }

    .store-profile {
        grid-template-columns: 220px 1fr;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 600px) {

    /* HEADER */

    .site-header {
        position: sticky;
    }

    .header-container {
        min-height: 64px;

        padding: 10px 12px;

        gap: 10px;
    }

    .logo {
        font-size: 20px;
    }

    #mobileMenuButton {
        display: flex;

        align-items: center;
        justify-content: center;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu {
        width: 100%;

        background: #ffffff;

        border-top: 1px solid #eeeeee;

        padding: 10px 12px;
    }

    .mobile-menu a {
        display: block;

        padding: 13px 10px;

        border-bottom: 1px solid #f0f0f0;

        text-decoration: none;

        color: #333333;

        font-family:
            "myfont6",
            Arial,
            sans-serif;

        font-size: 14px;
    }

    .mobile-menu a:last-child {
        border-bottom: none;
    }

    .mobile-menu a:hover {
        color: #16834a;
    }


    /* HERO */

    .hero {
        padding: 40px 16px 38px;
    }

    .hero h1 {
        font-size: 29px;

        line-height: 1.45;
    }

    .hero p {
        font-size: 14px;

        line-height: 1.8;

        margin-bottom: 22px;
    }


    /* SEARCH */

    .search-section {
        margin-top: -5px;

        padding: 0 12px;
    }

    .search-box {
        min-height: 50px;

        padding: 0 15px;

        border-radius: 12px;

        font-size: 14px;
    }


    /* CATEGORIES */

    .categories {
        padding: 0 12px;

        margin-top: 18px;
    }

    .category-button {
        min-height: 37px;

        padding: 0 14px;

        font-size: 12px;
    }


    /* SECTIONS */

    .products-section,
    .stores-section {
        margin: 35px auto;

        padding: 0 12px;
    }

    .products-section h2,
    .stores-section h2,
    .store-products-title {
        font-size: 22px;

        margin-bottom: 17px;
    }


    /* BOTH PRODUCTS + STORES */

    .products-container,
    .stores-container,
    .store-products {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap: 10px;
    }


    /* PRODUCT CARD */

    .product-card {
        border-radius: 15px;
    }

    .product-image,
    .product-image-slider {
        height: 165px;
    }

    .product-info {
        padding: 10px;
    }

    .product-info h3 {
        font-size: 14px;

        line-height: 1.4;

        margin-bottom: 5px;
    }

    .product-info p {
        font-size: 11px;

        line-height: 1.5;

        margin-bottom: 9px;

        min-height: 34px;
    }

    .product-bottom {
        flex-direction: column;

        align-items: stretch;

        gap: 7px;
    }

    .price {
        font-size: 14px;
    }

    .contact-button {
        width: 100%;

        min-height: 37px;

        padding: 0 7px;

        font-size: 11px;

        border-radius: 8px;
    }


    /* SLIDER */

    .slider-button {
        width: 29px;
        height: 29px;

        font-size: 20px;
    }

    .slider-prev {
        right: 7px;
    }

    .slider-next {
        left: 7px;
    }


    /* STORE CARD */

    .store-card {
        border-radius: 15px;
    }

    .store-image {
        height: 165px;
    }

    .store-info {
        padding: 10px;
    }

    .store-info h3 {
        font-size: 14px;

        line-height: 1.4;

        margin-bottom: 5px;
    }

    .store-info p {
        font-size: 11px;

        line-height: 1.5;

        margin-bottom: 9px;

        min-height: 34px;
    }

    .store-button {
        min-height: 37px;

        font-size: 11px;

        border-radius: 8px;
    }


    /* STORE BUTTONS */

    .store-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .share-store-button,
    .share-product-button {
        width: 100%;

        min-height: 40px;

        font-size: 13px;
    }


    /* PRODUCT PAGE */

    .product-page {
        margin: 25px auto;

        padding: 0 12px;
    }

    .product-details {
        padding: 12px;

        border-radius: 16px;

        gap: 20px;
    }

    .product-main-image {
        height: 330px;

        border-radius: 13px;
    }

    .product-details-content h1 {
        font-size: 25px;
    }

    .product-description {
        font-size: 14px;

        line-height: 1.9;
    }

    .product-page-price {
        font-size: 24px;
    }

    .product-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .whatsapp-button {
        width: 100%;
    }


    /* STORE PAGE */

    .store-page {
        margin: 25px auto;

        padding: 0 12px;
    }

    .store-profile {
        grid-template-columns: 1fr;

        padding: 12px;

        border-radius: 16px;

        gap: 18px;
    }

    .store-profile-image {
        height: 230px;

        border-radius: 13px;
    }

    .store-profile-content h1 {
        font-size: 25px;
    }


    /* BREADCRUMB */

    .breadcrumb {
        margin-top: 18px;

        padding: 0 12px;

        font-size: 12px;
    }


    /* MODAL */

    .store-link-modal {
        padding: 12px;
    }

    .store-link-box {
        padding: 20px;

        border-radius: 16px;
    }

    .store-link-box h2 {
        font-size: 19px;
    }


    /* FOOTER */

    .site-footer {
        margin-top: 50px;

        padding: 28px 15px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .logo {
        font-size: 18px;
    }

    .products-container,
    .stores-container,
    .store-products {
        gap: 8px;
    }

    .product-image,
    .product-image-slider,
    .store-image {
        height: 145px;
    }

    .product-info,
    .store-info {
        padding: 9px;
    }

    .product-info h3,
    .store-info h3 {
        font-size: 13px;
    }

    .product-info p,
    .store-info p {
        font-size: 10px;
    }

    .price {
        font-size: 13px;
    }

    .contact-button,
    .store-button {
        font-size: 10px;
    }

    .product-main-image {
        height: 280px;
    }

}