/* ==========================================
   GIFTS HERO
========================================== */

.gifts-hero-section {
    background: #f5f5f3;
}

/* ==========================================
   BREADCRUMB
========================================== */

.gifts-breadcrumb {
    max-width: 1280px;
    margin: 0 auto;

    height: 56px;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 0 24px;

    color: #1f2c3a;

    font-size: 16px;
    font-weight: 400;
}

.gifts-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.gifts-breadcrumb span {
    color: inherit;
}

/* ==========================================
   SPLIT HERO
========================================== */

.gifts-split-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;

    width: 100%;
}

/* ==========================================
   PANEL
========================================== */

.gift-panel {
    position: relative;
    overflow: hidden;
    background: #ddd;
}

.gift-image {
    position: relative;
}

.gift-image img {
    width: 100%;
    height: 610px;

    object-fit: cover;
    display: block;

    transition: transform .8s ease;
}

.gift-panel:hover img {
    transform: scale(1.03);
}

/* ==========================================
   OVERLAY
========================================== */

.gift-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;

    padding-bottom: 60px;
}

.gift-overlay h2 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 76px;
    font-weight: 300;
    line-height: 1;

    color: white;

    text-align: center;

    margin-bottom: 28px;

    letter-spacing: -1px;
}

/* ==========================================
   BUTTON
========================================== */

.gift-btn {
    width: 210px;
    height: 58px;

    background: white;
    color: #1f2c3a;

    text-decoration: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    font-weight: 500;

    transition: .25s ease;
}

.gift-btn:hover {
    background: #f1f1f1;
}

/* ==========================================
   TOP JEWELRY GIFTS + GIFTS BY PRICE
========================================== */

.gifts-categories-section {
    background: #f5f5f3;
    padding: 58px 0 92px;
}

.gifts-categories-container {
    max-width: 1840px;
    margin: 0 auto;
    padding: 0 38px;
}

/* ==========================================
   SECTION TITLES
========================================== */

.section-title,
.price-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    color: #1e2534;
    letter-spacing: -.5px;
}

.section-title {
    font-size: 44px;
    margin-bottom: 28px;
}

.price-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 36px;
}

.gift-category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.gift-category-card {
    text-decoration: none;
    color: inherit;
}

.gift-category-image {
    overflow: hidden;
    background: #e9e9e9;
}

.gift-category-image img {
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1.15;
    object-fit: cover;
    transition: transform .55s ease;
}

.gift-category-card:hover img {
    transform: scale(1.04);
}

.gift-category-card h3 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.25;
    color: #1f2c3a;
    margin-top: 16px;
}

.gift-price-block {
    margin-top: 108px;
}

.gift-price-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.price-card {
    height: 94px;
    border: 1px solid #737373;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    text-decoration: none;
    color: #1f2c3a;
    font-size: 17px;
    font-weight: 400;
    transition: .25s ease;
}

.price-card:hover {
    background: #1f2c3a;
    color: white;
    border-color: #1f2c3a;
}

.seasonal-gifts-section {
    background: #f5f5f3;
    padding: 34px 0 60px;
}

.seasonal-gifts-container {
    max-width: 1840px;
    margin: 0 auto;
    padding: 0 44px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.seasonal-gift-card {
    display: flex;
    flex-direction: column;
}

.seasonal-gift-image {
    overflow: hidden;
    background: #e8e8e8;
}

.seasonal-gift-image img {
    width: 100%;
    height: 590px;

    display: block;
    object-fit: cover;

    transition: transform .7s ease;
}

.seasonal-gift-card:hover img {
    transform: scale(1.03);
}

.seasonal-gift-content p {
    font-size: 20px;
    line-height: 1.4;
    color: #2f3947;
    margin-bottom: 28px;
}

.seasonal-btn {
    width: 320px;
    height: 68px;
    border: 1px solid #6f6f6f;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    color: #1f2430;
    background: transparent;
    transition: .25s ease;
}

.seasonal-btn:hover {
    background: #1f2430;
    color: #fff;
    border-color: #1f2430;
}

/* ==========================================
   GIFTS BY RECIPIENT
========================================== */

.recipient-gifts-section {
    background: #f5f5f3;
    padding: 46px 0 70px;
}

.recipient-gifts-container {
    max-width: 1840px;
    margin: 0 auto;
    padding: 0 44px;
}

/* ==========================================
   TITLE
========================================== */

.recipient-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
    color: #1d2638;
    margin-bottom: 40px;
    letter-spacing: -.5px;
}

.recipient-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.recipient-card {
    text-decoration: none;
    color: inherit;
}

.recipient-image {
    overflow: hidden;
    background: #e7ece8;
}

.recipient-image img {
    width: 100%;
    display: block;
    height: 650px;
    object-fit: cover;
    transition: transform .7s ease;
}

.recipient-card:hover img {
    transform: scale(1.03);
}

.recipient-card h3 {
    margin-top: 20px;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.25;
    color: #1f2c3a;
}

.popular-gifts-section{
    background:#f5f5f3;
    padding:72px 0 90px;
    overflow:hidden;
}

.popular-gifts-container{
    max-width:1840px;
    margin:0 auto;
    padding:0 50px;
}

.popular-gifts-title{
    font-family:'Cormorant Garamond',serif;
    font-size:44px;
    font-weight:300;
    color:#1e2637;
    margin-bottom:42px;
    line-height:1;
}

.popular-gifts-swiper{
    position:relative;
    overflow:visible;
}

.popular-gifts-swiper .swiper-slide{
    width:340px;
}

.popular-product-card{
    text-align:center;
}

.product-image-wrap{
    position:relative;
    background:#f0f0ef;
    height:305px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.product-image-wrap img{
    width:78%;
    height:auto;
    object-fit:contain;
}

.product-badge{
    position:absolute;
    top:12px;
    left:12px;
    background:#fff;
    border-radius:999px;
    padding:8px 16px;
    font-size:11px;
    font-weight:600;
    letter-spacing:.08em;
}

.product-swatches{
    display:flex;
    justify-content:center;
    gap:14px;

    margin-top:14px;
    margin-bottom:12px;
}

.swatch{
    width:26px;
    height:26px;
    border-radius:50%;
}

.swatch.silver{
    background:#d8d8d8;
}

.swatch.gold{
    background:#e7c76d;
}

.swatch.rose{
    background:#efc1a4;
}

.swatch.platinum{
    background:#ececec;
}

.swatch.active{
    border:2px solid #006c70;
    box-sizing:border-box;
}

.popular-product-card h3{
    font-size:16px;
    font-weight:400;
    line-height:1.25;

    color:#1f2430;

    max-width:290px;

    margin:0 auto;
}

/* PRICE */

.price{
    margin-top:10px;
    font-size:15px;
    font-weight:400;
    color:#1f2430;
}

.popular-next,
.popular-prev{
    width:56px;
    height:56px;

    border-radius:50%;

    background:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    position:absolute;
    top:118px;

    cursor:pointer;

    box-shadow:0 4px 15px rgba(0,0,0,.12);

    z-index:10;

    font-size:28px;
}

.popular-next{
    right:-10px;
}

.popular-prev{
    left:-10px;
}

.shop-occasion-section{
    background:#f5f5f3;
    padding:120px 0;
}

.shop-occasion-container{
    max-width:1520px;
    margin:0 auto;
    padding:0 40px;

    display:grid;
    grid-template-columns:520px 1fr;
    gap:120px;
    align-items:center;
}

.occasion-content h2{
    font-family:"Cormorant Garamond",serif;
    font-size:58px;
    font-weight:300;
    line-height:1.1;
    color:#1f2430;

    margin-bottom:42px;
}

.occasion-buttons{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.occasion-buttons a{
    height:54px;

    border:1px solid #666;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-size:18px;
    color:#222;

    transition:.25s ease;
}

.occasion-buttons a:hover{
    background:#222;
    color:#fff;
}

.occasion-image{
    width:100%;
    height:610px;
    overflow:hidden;
}

.occasion-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.meaningful-gifts{
    background:#f5f5f3;
    padding:70px 0 90px;
}

.meaningful-container{
    max-width:1820px;
    margin:0 auto;
    padding:0 40px;
}

.meaningful-gifts h2{
    font-family:"Cormorant Garamond",serif;
    font-size:62px;
    font-weight:300;
    line-height:1.05;
    color:#1f2430;
    margin-bottom:42px;
}

.meaningful-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:10px;
}

.meaning-card{
    display:flex;
    flex-direction:column;
}

.meaning-image{
    height:345px;
    overflow:hidden;
}

.meaning-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

    transition:transform .45s ease;
}

.meaning-card:hover img{
    transform:scale(1.03);
}

.meaning-card h3{
    margin-top:20px;
    margin-bottom:12px;

    font-size:18px;
    font-weight:400;
    line-height:1.25;
    color:#1f2430;
}

.meaning-card p{
    font-size:15px;
    line-height:1.45;
    color:#2f3440;

    max-width:95%;
}

.high-jewelry-section{
    background:#f5f5f3;
    padding:90px 0 110px;
}

.high-jewelry-container{
    max-width:1820px;
    margin:0 auto;
    padding:0 44px;
}

.high-jewelry-grid{
    display:grid;
    grid-template-columns:58% 42%;
    align-items:center;
    column-gap:85px;
}

.high-jewelry-image{
    overflow:hidden;
}

.high-jewelry-image img{
    width:100%;
    aspect-ratio:1.18/1;
    object-fit:cover;
    display:block;
}

.high-jewelry-content{
    max-width:540px;
}

.high-jewelry-content .eyebrow{
    display:block;
    margin-bottom:18px;

    font-size:15px;
    font-weight:400;
    color:#2f3440;
}

.high-jewelry-content h2{
    font-family:"Cormorant Garamond",serif;
    font-size:68px;
    font-weight:300;
    line-height:1.05;

    color:#1f2430;

    margin-bottom:24px;
}

.high-jewelry-content p{
    font-size:19px;
    line-height:1.65;
    color:#2f3440;

    margin-bottom:40px;
}

.high-jewelry-content a{
    width:170px;
    height:58px;

    border:1px solid #2b313d;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    color:#1f2430;
    font-size:18px;

    transition:.25s ease;
}

.high-jewelry-content a:hover{
    background:#1f2430;
    color:white;
}

.more-ways-shop{
    background:#f5f5f3;
    padding:80px 0 110px;
}

.more-ways-container{
    max-width:1820px;
    margin:0 auto;
    padding:0 44px;
}

.more-ways-title{
    font-family:"Cormorant Garamond", serif;
    font-size:46px;
    font-weight:300;
    line-height:1.05;
    color:#1f2430;

    margin-bottom:46px;
}

.more-ways-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

.shop-card{
    display:flex;
    flex-direction:column;
}

.shop-image{
    overflow:hidden;
}

.shop-image img{
    width:100%;
    aspect-ratio:1/1.22;
    object-fit:cover;
    display:block;

    transition:transform .45s ease;
}

.shop-card:hover img{
    transform:scale(1.03);
}

.shop-card h3{
    margin-top:16px;
    font-size:19px;
    font-weight:400;
    line-height:1.35;
    color:#1f2430;
}

.industry-standards{
    background:#f5f5f3;
    padding:70px 0 90px;
}

.industry-container{
    max-width:1820px;
    margin:0 auto;
    padding:0 50px;
}

.industry-banner{
    position:relative;
    overflow:hidden;

    height:380px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#083b38;
}

.industry-banner img{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;
    object-fit:cover;
}

.industry-overlay{
    position:relative;
    z-index:2;

    text-align:center;
    color:white;

    max-width:780px;
}

.industry-overlay h2{
    font-family:"Cormorant Garamond", serif;
    font-size:66px;
    font-weight:300;
    line-height:1.08;

    margin-bottom:20px;
}

.industry-overlay p{
    font-size:19px;
    line-height:1.6;

    max-width:700px;
    margin:0 auto 42px;
}

.industry-btn{
    width:170px;
    height:58px;

    background:white;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    color:#1f2430;
    font-size:18px;

    transition:.25s ease;
}

.industry-btn:hover{
    transform:translateY(-2px);
}

.gifting-education{
    background:#f5f5f3;
    padding:90px 0 110px;
}

.gifting-container{
    max-width:1820px;
    margin:0 auto;
    padding:0 44px;
}

.gifting-title{
    font-family:"Cormorant Garamond", serif;
    font-size:44px;
    font-weight:300;
    line-height:1;
    color:#1d2530;
    margin-bottom:55px;
}

.gifting-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.gifting-card{
    cursor:pointer;
}

.gifting-image{
    aspect-ratio:1 / 1.16;
    overflow:hidden;
    margin-bottom:24px;
}

.gifting-image img{
    width:100%;
    height:100%;
    object-fit:cover;

    display:block;

    transition:transform .45s ease;
}

.gifting-card:hover img{
    transform:scale(1.03);
}

.gifting-card h3{
    font-size:21px;
    font-weight:400;

    color:#1d2530;

    line-height:1.3;

    margin-bottom:10px;
}

.gifting-card p{
    font-size:17px;
    line-height:1.65;

    color:#3f4852;

    max-width:95%;
}

.gifts-editorial{
    background:#f5f5f3;
    padding:80px 0 90px;
}

.gifts-editorial__container{
    max-width:1200px;
    margin:0 auto;
    padding:0 40px;
}

.gifts-editorial__title{
    font-family:"Cormorant Garamond", serif;
    font-size:46px;
    font-weight:300;
    line-height:1.1;
    text-align:center;
    color:#1f2530;
    margin-bottom:55px;
}

.gifts-editorial__content{
    max-width:1480px;
    margin:0 auto;
}

.gifts-editorial__content p{
    font-size:16px;
    line-height:1.7;
    font-weight:400;
    color:#202a35;
    margin:0 0 42px;
}

.gifts-editorial__content p:last-child{
    margin-bottom:0;
}

.gifts-editorial__content a{
    color:#202a35;
    text-decoration:underline;
    text-underline-offset:4px;

    transition:opacity .2s ease;
}

.gifts-editorial__content a:hover{
    opacity:.7;
}

.related-pages{
    background:#f5f5f3;
    padding:95px 0 80px;
}

.related-pages__container{
    max-width:1200px;
    margin:0 auto;
    padding:0 40px;
}

.related-pages__title{
    font-family:"Cormorant Garamond", serif;
    font-size:48px;
    font-weight:300;
    line-height:1.1;
    text-align:center;
    color:#1f2530;
    margin-bottom:50px;
}

.related-pages__accordion{
    width:100%;
}

.related-item{
    border-bottom:1px solid #222a35;
}

.related-item summary{
    list-style:none;
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
    padding:20px 0;
    font-size:17px;
    font-weight:400;
    color:#1f2530;
}

.related-item summary::-webkit-details-marker{
    display:none;
}

.related-item summary i{
    font-size:15px;
    transition:.3s ease;
}

.related-item[open] summary i{
    transform:rotate(180deg);
}

.related-item__content{
    padding:0 0 30px;
}

.related-links a{
    color:#1f2530;
    text-decoration:none;
    font-size:15px;
}

.related-links a:hover{
    text-decoration:underline;
}

.gifts-faq{
    background:#f5f5f3;
    padding:80px 0 90px;
}

.gifts-faq__container{
    max-width:1200px;
    margin:0 auto;
    padding:0 40px;
}

.gifts-faq__title{
    font-family:"Cormorant Garamond", serif;
    font-size:48px;
    font-weight:300;
    line-height:1.1;
    text-align:center;
    color:#1f2530;
    margin-bottom:55px;
}

.gifts-faq__accordion{
    width:100%;
}

.faq-item{
    border-bottom:1px solid #2a3139;
}

.faq-item summary{
    list-style:none;
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
    padding:18px 0;
    color:#1f2530;
    font-size:17px;
    font-weight:400;
}

.faq-item summary::-webkit-details-marker{
    display:none;
}

.faq-item summary i{
    font-size:15px;
    transition:transform .3s ease;
}

.faq-item[open] summary i{
    transform:rotate(180deg);
}

.faq-answer{
    padding:0 0 26px;
}

.faq-answer p{
    font-size:17px;
    line-height:1.7;
    color:#1f2530;
    margin:0;
}

.faq-answer a{
    color:#1f2530;
    text-decoration:underline;
    text-underline-offset:4px;
    transition:opacity .2s ease;
}

.faq-answer a:hover{
    opacity:.7;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1400px) {

    .gift-overlay h2 {
        font-size: 64px;
    }

    .gift-image img {
        height: 560px;
    }

    .gift-category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .section-title {
        font-size: 34px;
    }

    .price-title {
        font-size: 30px;
    }

    .seasonal-gifts-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .seasonal-gift-image img {
        height: 650px;
    }

    .recipient-image img {
        height: 560px;
    }

    .recipient-title {
        font-size: 54px;
    }
}

@media (max-width:1200px){

    .gifts-editorial{
        padding:70px 0;
    }

    .gifts-editorial__title{
        font-size:54px;
        margin-bottom:45px;
    }

    .gifts-editorial__content p{
        font-size:20px;
    }

    .gifts-faq__title{
        font-size:54px;
    }

    .faq-item summary{
        font-size:20px;
    }

    .faq-answer p{
        font-size:18px;
    }

}

@media (max-width: 992px) {
    .gift-price-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .recipient-grid {
        grid-template-columns: 1fr;
    }

    .recipient-image img {
        height: 650px;
    }
}

@media (max-width: 1100px) {

    .gifts-split-hero {
        grid-template-columns: 1fr;
    }

    .gift-image img {
        height: 650px;
    }

    .gift-overlay h2 {
        font-size: 56px;
    }

    .recipient-grid {
        gap: 18px;
    }

    .recipient-image img {
        height: 480px;
    }

    .recipient-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {

    .gifts-breadcrumb {
        font-size: 15px;
        padding: 0 20px;
    }

    .gift-image img {
        height: 520px;
    }

    .gift-overlay {
        padding: 0 24px 40px;
    }

    .gift-overlay h2 {
        font-size: 42px;
        margin-bottom: 24px;
    }

    .gift-btn {
        width: 180px;
        height: 52px;
        font-size: 16px;
    }

    .gifts-categories-section {
        padding: 50px 0 70px;
    }

    .gifts-categories-container {
        padding: 0 24px;
    }

    .gift-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 42px;
        margin-bottom: 24px;
    }

    .price-title {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .gift-category-card h3 {
        font-size: 18px;
    }

    .price-card {
        height: 78px;
        font-size: 17px;
    }

    .seasonal-gifts-container {
        padding: 0 24px;
    }

    .seasonal-gift-image img {
        height: 420px;
    }

    .seasonal-gift-content h2 {
        font-size: 42px;
    }

    .seasonal-gift-content p {
        font-size: 17px;
    }

    .seasonal-btn {
        width: 100%;
        max-width: 320px;
        height: 58px;
        font-size: 16px;
    }

    .recipient-gifts-container {
        padding: 0 24px;
    }

    .recipient-title {
        font-size: 42px;
        margin-bottom: 28px;
    }

    .recipient-image img {
        height: 500px;
    }

    .gifts-editorial{
        padding:55px 0;
    }

    .gifts-editorial__container{
        padding:0 24px;
    }

    .gifts-editorial__title{
        font-size:42px;
        margin-bottom:35px;
    }

    .gifts-editorial__content p{
        font-size:18px;
        line-height:1.65;
        margin-bottom:28px;
    }

     .gifts-faq{
        padding:60px 0;
    }

    .gifts-faq__container{
        padding:0 20px;
    }

    .gifts-faq__title{
        font-size:42px;
        margin-bottom:35px;
    }

    .faq-item summary{
        font-size:18px;
        padding:20px 0;
    }

    .faq-answer p{
        font-size:16px;
        line-height:1.65;
    }

}

@media (max-width: 480px) {

    .gift-image img {
        height: 440px;
    }

    .gift-overlay h2 {
        font-size: 34px;
    }

    .gift-btn {
        width: 160px;
    }

    .gift-category-grid {
        grid-template-columns: 1fr;
    }

    .gift-price-grid {
        grid-template-columns: 1fr;
    }

    .gift-price-block {
        margin-top: 70px;
    }

    .seasonal-gift-content h2 {
        font-size: 34px;
    }

    .seasonal-gift-image img {
        height: 340px;
    }

    .recipient-image img {
        height: 380px;
    }

    .recipient-title {
        font-size: 36px;
    }

    .recipient-card h3 {
        font-size: 18px;
    }
}