/* =========================
   DAVINCI JEWELLERY
   GLOBAL
========================= */

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #171717;
    font-family: Arial, Helvetica, sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =========================
   HEADER
========================= */

.site-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
    z-index: 1000;
}

.header-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 26px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.site-logo-image {
    display: block;
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo-text {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    flex: 1;
}

.main-navigation a,
.header-actions a {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: opacity 0.25s ease;
}

.main-navigation a:hover,
.header-actions a:hover {
    opacity: 0.55;
}

.header-actions {
    white-space: nowrap;
}


/* =========================
   MOBILE MENU BUTTON
========================= */

.mobile-menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 9px;

    border: 0;
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;

    width: 23px;
    height: 1.5px;

    background: #171717;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* =========================
   MOBILE NAVIGATION
========================= */

.mobile-navigation {
    display: none;
}


/* =========================
   HERO
========================= */

.site-main {
    min-height: 60vh;
}

.hero {
    width: 100%;
    background: #faf9f6;
}

.hero-inner {
    max-width: 1400px;
    min-height: 620px;

    margin: 0 auto;
    padding: 90px 40px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    align-items: center;
    gap: 70px;
}

.hero-content {
    max-width: 650px;
}

.hero-eyebrow {
    margin-bottom: 26px;

    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;

    color: #777777;
}

.hero h1 {
    margin: 0 0 28px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(56px, 5.5vw, 88px);
    line-height: 0.96;

    font-weight: 400;
    letter-spacing: -4px;
}

.hero p {
    max-width: 560px;

    margin: 0 0 38px;

    font-size: 18px;
    line-height: 1.65;

    color: #666666;
}

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 56px;

    padding: 0 30px;

    background: #111111;
    color: #ffffff;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 1.3px;
    text-transform: uppercase;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.btn:hover {
    background: #333333;
    transform: translateY(-2px);
}


/* =========================
   HERO IMAGE
========================= */

.hero-image {
    width: 100%;
    max-width: 620px;

    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: auto;

    max-height: 560px;

    object-fit: contain;
}


/* =========================
   FOOTER
========================= */

.site-footer {
    border-top: 1px solid #e8e8e8;
    background: #ffffff;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 40px;

    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-brand h2 {
    margin: 0 0 12px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 28px;
    font-weight: 500;
}

.footer-brand p {
    margin: 0;

    color: #777777;
    font-size: 14px;
}

.footer-links {
    display: grid;

    grid-template-columns: repeat(2, minmax(100px, 150px));

    gap: 16px 50px;
}

.footer-links a {
    font-size: 13px;
    letter-spacing: 0.8px;
}

.footer-links a:hover {
    opacity: 0.55;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;

    padding: 20px 40px 30px;

    border-top: 1px solid #eeeeee;

    font-size: 12px;
    color: #888888;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .header-container {
        padding: 22px 28px;
    }

    .hero-inner {
        gap: 40px;
        padding: 70px 28px;
    }

    .hero h1 {
        font-size: 64px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

    /* HEADER */

    .header-container {
        padding: 20px 22px;

        min-height: 78px;

        gap: 20px;
    }

    .site-logo {
        font-size: 24px;
    }

    .main-navigation,
    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }


    /* MOBILE NAV */

    .mobile-navigation {
        display: none;

        width: 100%;

        padding: 30px 22px 38px;

        border-top: 1px solid #eeeeee;

        background: #ffffff;

        flex-direction: column;

        gap: 24px;
    }

    .mobile-navigation.is-open {
        display: flex;
    }

    .mobile-navigation a {
        font-size: 16px;

        letter-spacing: 1.5px;

        text-transform: uppercase;
    }


    /* HAMBURGER ANIMATION */

    .mobile-menu-toggle.is-open span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .mobile-menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }


    /* HERO */

    .hero-inner {
        min-height: auto;

        padding: 70px 22px 80px;

        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 55px;
    }

    .hero-content {
        width: 100%;
        max-width: none;
    }

    .hero-eyebrow {
        margin-bottom: 24px;

        font-size: 10px;
        letter-spacing: 3.5px;
    }

    .hero h1 {
        margin-bottom: 28px;

        font-size: clamp(48px, 13vw, 68px);

        line-height: 0.94;

        letter-spacing: -2.8px;
    }

    .hero p {
        max-width: 650px;

        margin-bottom: 32px;

        font-size: 17px;
        line-height: 1.6;
    }

    .btn {
        min-height: 54px;

        padding: 0 28px;

        font-size: 12px;
    }


    /* HERO IMAGE */

    .hero-image {
        width: 100%;
        max-width: 100%;

        margin: 0;

        overflow: hidden;
    }

    .hero-image img {
        width: 100%;
        height: auto;

        max-height: none;

        object-fit: contain;
    }


    /* FOOTER */

    .footer-container {
        padding: 50px 22px;

        flex-direction: column;

        gap: 45px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);

        gap: 18px 30px;
    }

    .footer-bottom {
        padding-left: 22px;
        padding-right: 22px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .header-container {
        padding: 18px 18px;
    }

    .site-logo {
        font-size: 22px;
    }

    .hero-inner {
        padding: 60px 18px 70px;

        gap: 45px;
    }

    .hero h1 {
        font-size: 47px;

        letter-spacing: -2.3px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn {
        width: 100%;
    }

    .hero-image {
        width: 100%;
    }

}
/* =========================
   COLLECTIONS SECTION
========================= */

.collections-section {
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #eeeeee;
}

.collections-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px;
}


/* =========================
   COLLECTIONS HEADING
========================= */

.collections-heading {
    max-width: 650px;
    margin-bottom: 70px;
}

.collections-heading .section-eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #777777;
}

.collections-heading h2 {
    margin: 0 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 56px;
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -1.5px;
}

.collections-heading p {
    margin: 0;
    max-width: 560px;
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
}


/* =========================
   COLLECTION GRID
========================= */

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/* =========================
   COLLECTION CARD
========================= */

.collection-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #f5f4f1;
    color: #171717;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-4px);
}


/* =========================
   COLLECTION IMAGE
========================= */

.collection-image {
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: #eeeeeb;
}

.collection-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-card:hover .collection-image img {
    transform: scale(1.04);
}


/* =========================
   IMAGE PLACEHOLDER
========================= */

.collection-placeholder {
    width: 100%;
    height: 100%;
    background: #eeeeeb;
}


/* =========================
   COLLECTION INFO
========================= */

.collection-info {
    padding: 28px;
    background: #f5f4f1;
}

.collection-info h3 {
    margin: 0 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 400;
}

.collection-info span {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.collection-card:hover .collection-info span {
    opacity: 0.55;
}


/* =========================
   COLLECTIONS MOBILE
========================= */

@media (max-width: 800px) {

    .collections-inner {
        padding: 80px 20px;
    }

    .collections-heading {
        margin-bottom: 45px;
    }

    .collections-heading h2 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .collections-heading p {
        font-size: 15px;
    }

    .collections-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .collection-image {
        height: 360px;
    }

    .collection-info {
        padding: 24px;
    }

    .collection-info h3 {
        font-size: 28px;
    }

}
/* =========================================
   DAVINCI COLLECTIONS
   DESKTOP OVERRIDE
========================================= */

@media (min-width: 801px) {

    .collections-section {
        display: block !important;
        width: 100% !important;
        background: #ffffff !important;
        border-top: 1px solid #eeeeee !important;
    }

    .collections-inner {
        display: block !important;
        width: 100% !important;
        max-width: 1400px !important;
        margin: 0 auto !important;
        padding: 120px 40px !important;
    }

    .collections-heading {
        display: block !important;
        max-width: 650px !important;
        margin-bottom: 70px !important;
    }

    .collections-heading .section-eyebrow {
        display: block !important;
        margin-bottom: 18px !important;
        font-size: 11px !important;
        letter-spacing: 3px !important;
        text-transform: uppercase !important;
        color: #777777 !important;
    }

    .collections-heading h2 {
        display: block !important;
        margin: 0 0 20px !important;
        font-family: Georgia, "Times New Roman", serif !important;
        font-size: 56px !important;
        line-height: 1.05 !important;
        font-weight: 400 !important;
        letter-spacing: -1.5px !important;
    }

    .collections-heading p {
        display: block !important;
        margin: 0 !important;
        max-width: 560px !important;
        font-size: 16px !important;
        line-height: 1.7 !important;
        color: #666666 !important;
    }

    .collections-grid {
        display: grid !important;
        width: 100% !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 24px !important;
    }

    .collection-card {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        overflow: hidden !important;
        background: #f5f4f1 !important;
        color: #171717 !important;
        text-decoration: none !important;
    }

    .collection-image {
        display: block !important;
        width: 100% !important;
        height: 420px !important;
        overflow: hidden !important;
        background: #eeeeeb !important;
    }

    .collection-image img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .collection-placeholder {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        background: #eeeeeb !important;
    }

    .collection-info {
        display: block !important;
        width: 100% !important;
        padding: 28px !important;
        background: #f5f4f1 !important;
    }

    .collection-info h3 {
        display: block !important;
        margin: 0 0 14px !important;
        font-family: Georgia, "Times New Roman", serif !important;
        font-size: 30px !important;
        line-height: 1.1 !important;
        font-weight: 400 !important;
    }

    .collection-info span {
        display: inline-block !important;
        font-size: 11px !important;
        letter-spacing: 1.5px !important;
        text-transform: uppercase !important;
    }

}
/* =========================
   ABOUT / BRAND STORY
========================= */

.about-section {
    padding: 120px 0;
    background: #ffffff;
}

.about-inner {
    width: min(1200px, calc(100% - 80px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;

    align-items: center;
}

/* IMAGE */

.about-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f4f2ef;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-placeholder {
    width: 100%;
    height: 100%;
    background: #f4f2ef;
}

/* CONTENT */

.about-content {
    max-width: 520px;
}

.about-content .section-eyebrow {
    margin-bottom: 25px;
}

.about-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5vw, 76px);
    line-height: 0.95;
    font-weight: 400;

    margin: 0 0 35px;
    letter-spacing: -0.04em;
}

.about-content p {
    max-width: 470px;

    font-size: 17px;
    line-height: 1.8;
    color: #555;

    margin: 0 0 35px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #111;
    text-decoration: none;

    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    border-bottom: 1px solid #111;
    padding-bottom: 8px;
}

.text-link span {
    font-size: 18px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}


/* =========================
   ABOUT MOBILE
========================= */

@media (max-width: 768px) {

    .about-section {
        padding: 80px 0;
    }

    .about-inner {
        width: calc(100% - 40px);

        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        order: 1;
        aspect-ratio: 4 / 5;
    }

    .about-content {
        order: 2;
        max-width: none;
    }

    .about-content h2 {
        font-size: clamp(44px, 13vw, 64px);
        line-height: 0.95;
    }

    .about-content p {
        font-size: 16px;
        line-height: 1.7;
    }

}
/* =========================================================
   DAVINCI JEWELLERY - SHOP PAGE
   ========================================================= */

.shop-page {
    width: 100%;
}

/* =========================
   SHOP HERO
   ========================= */

.shop-hero {
    width: 100%;
    padding: 90px 0 80px;
    background: #ffffff;
}

.shop-hero-inner {
    width: min(1280px, calc(100% - 80px));
    margin: 0 auto;
}

.shop-hero .section-eyebrow {
    margin: 0 0 24px;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #777777;
}

.shop-hero h1 {
    max-width: 700px;
    margin: 0 0 28px;
    padding: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 6vw, 82px);
    line-height: 0.95;
    font-weight: 400;
    letter-spacing: -0.045em;

    color: #171717;
}

.shop-hero p {
    max-width: 620px;
    margin: 0;

    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}


/* =========================
   PRODUCTS SECTION
   ========================= */

.shop-products {
    width: 100%;
    padding: 20px 0 120px;
}

.shop-products-inner {
    width: min(1280px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================
   SHOP TOOLBAR
   ========================= */

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin: 0 0 38px;
    padding: 0 0 22px;

    border-bottom: 1px solid #e5e5e5;
}

.shop-result-count {
    margin: 0;

    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.03em;
    color: #666666;
}

.shop-ordering {
    margin: 0;
}

.shop-ordering select {
    min-width: 160px;

    padding: 8px 28px 8px 0;

    border: 0;
    border-bottom: 1px solid #222222;
    border-radius: 0;

    background: transparent;

    font-family: inherit;
    font-size: 12px;
    line-height: 1.4;
    color: #111111;

    cursor: pointer;
}


/* =========================
   PRODUCT GRID
   ========================= */

.shop-products ul.products {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 56px 28px;

    width: 100%;
    margin: 0;
    padding: 0;

    list-style: none;
}

.shop-products ul.products::before,
.shop-products ul.products::after {
    display: none !important;
}


/* =========================
   PRODUCT ITEM
   ========================= */

.shop-products ul.products li.product {
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;

    float: none !important;

    list-style: none;
}


/* =========================
   PRODUCT LINK
   ========================= */

.shop-products ul.products li.product > a {
    display: block;

    margin: 0;
    padding: 0;

    color: inherit;
    text-decoration: none;
}


/* =========================
   PRODUCT IMAGE
   ========================= */

.shop-products ul.products li.product a img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 1 / 1;

    margin: 0 0 20px !important;
    padding: 0;

    object-fit: cover;

    background: #f5f4f1;

    transition: opacity 0.3s ease;
}

.shop-products ul.products li.product:hover a img {
    opacity: 0.88;
}


/* =========================
   PRODUCT TITLE
   ========================= */

.shop-products ul.products li.product
.woocommerce-loop-product__title {
    margin: 0 0 8px !important;
    padding: 0 !important;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;

    color: #111111;
}


/* =========================
   PRODUCT PRICE
   ========================= */

.shop-products ul.products li.product .price {
    display: block;

    margin: 0 0 16px !important;
    padding: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;

    color: #111111;
}

.shop-products ul.products li.product .price bdi {
    color: #111111;
}


/* =========================
   ADD TO CART
   ========================= */

.shop-products ul.products li.product .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin: 0 !important;
    padding: 10px 17px;

    border: 1px solid #111111;
    border-radius: 0;

    background: #ffffff;
    color: #111111;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.2;

    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.shop-products ul.products li.product .button:hover {
    background: #111111;
    color: #ffffff;
}


/* =========================
   SALE BADGE
   ========================= */

.shop-products ul.products li.product .onsale {
    top: 12px;
    right: 12px;

    min-height: auto;
    min-width: auto;

    margin: 0;
    padding: 6px 10px;

    border-radius: 0;

    background: #111111;
    color: #ffffff;

    font-size: 10px;
    font-weight: 400;
    line-height: 1.2;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}


/* =========================
   PAGINATION
   ========================= */

.shop-products .woocommerce-pagination {
    margin-top: 80px;
    text-align: center;
}

.shop-products .woocommerce-pagination ul {
    display: inline-flex;
    gap: 6px;

    margin: 0;
    padding: 0;

    border: 0 !important;
}

.shop-products .woocommerce-pagination ul li {
    margin: 0;
    padding: 0;

    border: 0 !important;
}

.shop-products .woocommerce-pagination a,
.shop-products .woocommerce-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 36px;
    min-height: 36px;

    padding: 6px 10px;

    border: 1px solid #e5e5e5;

    font-size: 12px;
    color: #111111;
}

.shop-products .woocommerce-pagination .current {
    background: #111111;
    color: #ffffff;
}


/* =========================
   EMPTY SHOP
   ========================= */

.shop-products .woocommerce-info {
    margin: 0;
    padding: 20px;

    border: 1px solid #e5e5e5;

    background: #fafafa;

    font-size: 13px;
    color: #555555;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .shop-hero-inner,
    .shop-products-inner {
        width: min(100% - 56px, 1280px);
    }

    .shop-hero {
        padding: 75px 0 65px;
    }

    .shop-products ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 48px 22px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .shop-hero-inner,
    .shop-products-inner {
        width: calc(100% - 40px);
    }

    .shop-hero {
        padding: 60px 0 50px;
    }

    .shop-hero .section-eyebrow {
        margin-bottom: 20px;
        font-size: 10px;
        letter-spacing: 2.8px;
    }

    .shop-hero h1 {
        margin-bottom: 22px;

        font-size: clamp(44px, 12vw, 64px);
        line-height: 0.95;
    }

    .shop-hero p {
        font-size: 15px;
        line-height: 1.65;
    }

    .shop-products {
        padding: 15px 0 80px;
    }

    .shop-toolbar {
        align-items: flex-start;
        gap: 18px;

        margin-bottom: 30px;
        padding-bottom: 18px;
    }

    .shop-ordering select {
        min-width: 140px;
    }

    .shop-products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px 16px;
    }

    .shop-products ul.products li.product
    .woocommerce-loop-product__title {
        font-size: 16px;
    }

    .shop-products ul.products li.product .price {
        font-size: 13px;
    }

    .shop-products ul.products li.product .button {
        padding: 9px 12px;
        font-size: 9px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .shop-hero-inner,
    .shop-products-inner {
        width: calc(100% - 30px);
    }

    .shop-hero {
        padding: 50px 0 45px;
    }

    .shop-hero h1 {
        font-size: 43px;
    }

    .shop-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-ordering select {
        width: 100%;
    }

    .shop-products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 12px;
    }

    .shop-products ul.products li.product
    .woocommerce-loop-product__title {
        font-size: 14px;
    }

}
/* =========================================
   DAVINCI JEWELLERY - SHOP PRODUCT GRID
   ========================================= */

.shop-products .woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 60px 32px;
    margin: 0;
    padding: 0;
}

.shop-products .woocommerce ul.products::before,
.shop-products .woocommerce ul.products::after {
    display: none;
}

.shop-products .woocommerce ul.products li.product {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
}

.shop-products .woocommerce ul.products li.product a img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 0 18px;
}

.shop-products .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 15px;
    font-weight: 400;
    margin: 0 0 8px;
}

.shop-products .woocommerce ul.products li.product .price {
    font-size: 14px;
    margin: 0 0 16px;
}

.shop-products .woocommerce ul.products li.product .button {
    margin-top: 4px;
}


/* Tablet */
@media (max-width: 900px) {
    .shop-products .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 45px 24px;
    }
}


/* Mobile */
@media (max-width: 600px) {
    .shop-products .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 35px 14px;
    }

    .shop-products .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 14px;
    }

    .shop-products .woocommerce ul.products li.product .price {
        font-size: 13px;
    }
}

/* =========================
   DAVINCI HEADER LOGO
========================= */

.site-header .site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    font-size: 0;
    line-height: 0;
}

.site-header .site-logo-image {
    display: block;
    width: 72px !important;
    height: 72px !important;
    max-width: 72px !important;
    max-height: 72px !important;
    min-width: 58px;
    min-height: 58px;
    object-fit: contain;
    margin: 0;
    padding: 0;
}