.pagination {
    background-color: unset;
    box-shadow: unset;
}

.pagination-section {
    padding: 32px 0;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination a,
.pagination span {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #d8d2cb;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    color: #5f5953;
    background: #ffffff;
    transition: all 0.2s ease;
}

.pagination a:hover {
    border-color: #7b746d;
    color: #2f2b28;
}

.pagination .active, .pagination .current {
    background: #26242a;
    border-color: #26242a;
    color: #ffffff;
}

.pagination .dots {
    border: none;
    background: transparent;
    min-width: auto;
    padding: 0 2px;
}

.pagination .nav {
    padding: 0 18px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
}

@media (max-width: 560px) {
    .pagination {
        gap: 8px;
    }

    .pagination a,
    .pagination span {
        min-width: 38px;
        height: 38px;
        font-size: 13px;
    }

    .pagination .nav {
        padding: 0 14px;
    }
}

.custom-copy h3 {
    margin: 0 0 14px;
    font-size: clamp(24px, 4.8vw, 50px);
    line-height: 0.95;
    font-weight: 400;
    letter-spacing: -0.04em;
    color: #4b453f;
}

.product-heading p,
.custom-copy p {
    margin: 0;
    max-width: 460px;
    font-size: 14px;
    line-height: 1.85;
    color: #7f7972;
}

.product-content {
    padding: 0 6% 78px;
}

.product-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}

.product-tabs {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.product-tab,
.product-sort {
    font-size: 12px;
    color: #8a837c;
    text-decoration: none;
}

.product-tab.active {
    color: #4f4943;
    font-weight: 600;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 18px;
}

.product-card {
    background: transparent;
}

.product-thumb {
    aspect-ratio: 0.82;
    border-radius: 6px;
    overflow: hidden;
    background: #ddd;
    margin-bottom: 14px;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.product-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
    color: #4d4741;
}

.product-card p {
    margin: 0 0 12px;
    min-height: 38px;
    font-size: 12px;
    line-height: 1.65;
    color: #8a837c;
}

.product-price {
    display: block;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 700;
    color: #4f4943;
}

.product-btn,
.all-product-btn,
.custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100%;
    padding: 12px 18px;
    border-radius: 4px;
    border: 1px solid #74706c;
    background: #74706c;
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.product-actions {
    text-align: center;
    margin-top: 42px;
}

.all-product-btn {
    min-width: 220px;
    background: transparent;
    color: #74706c;
    border-color: #d5d0ca;
}

.custom-design {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    align-items: center;
    padding: 68px 6% 82px;
    /* background: #f2efea; */
}

.custom-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.custom-media-item {
    border-radius: 10px;
    overflow: hidden;
    background: #ddd;
    min-height: 270px;
}

.custom-media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.custom-copy h3 {
    font-size: clamp(24px, 4vw, 40px);
}

.custom-copy p {
    margin-bottom: 26px;
}

.custom-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.custom-btn {
    min-width: 156px;
}

.custom-btn.secondary {
    background: transparent;
    color: #74706c;
    border-color: #cfc9c2;
}

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .custom-design {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-hero,
    .product-content,
    .custom-design {
        padding-left: 5%;
        padding-right: 5%;
    }
}

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

    .product-chain {
        width: 760px;
        top: -6px;
    }

    .custom-media {
        grid-template-columns: 1fr;
    }

    .custom-actions {
        flex-direction: column;
    }

    .custom-btn,
    .all-product-btn {
        width: 100%;
    }
}

.product-hero-banner {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    color: #2f2b28;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    background:
        linear-gradient(rgba(36, 31, 27, 0.44), rgba(36, 31, 27, 0.44)),
        url("https://images.unsplash.com/photo-1617038220319-276d3cfab638?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
}

.product-hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-chain-left,
.hero-chain-right {
    position: absolute;
    top: -44px;
    width: 44vw;
    max-width: 680px;
    min-width: 420px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.hero-chain-left {
    left: -70px;
    transform: rotate(10deg);
}

.hero-chain-right {
    right: -70px;
    transform: scaleX(-1) rotate(10deg);
}

.hero-chain-left img,
.hero-chain-right img {
    width: 100%;
    display: block;
    filter: grayscale(100%) contrast(0.95);
}

.hero-necklace-center {
    position: absolute;
    left: 50%;
    bottom: 110px;
    transform: translateX(-50%);
    width: min(78vw, 980px);
    opacity: 0.62;
    pointer-events: none;
    z-index: 0;
}

.hero-necklace-center img {
    width: 100%;
    display: block;
    filter: grayscale(100%) contrast(0.96);
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    padding: 110px 0px;
}

.hero-banner-label {
    margin: 0 0 18px;
    font-size: 13px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: #77726d;
}

.hero-banner-title {
    margin: 0 0 20px;
    font-size: clamp(24px, 5vw, 50px);
    line-height: 0.95;
    font-weight: 400;
    letter-spacing: -0.05em;
    color: white;
}

.hero-banner-desc {
    margin: 0;
    max-width: 720px;
    font-size: 16px;
    line-height: 1.7;
    color: white;
}

.hero-banner-toolbar {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-banner-tabs {
    display: flex;
    gap: 42px;
    flex-wrap: wrap;
}

.hero-banner-tab,
.hero-banner-sort,
.hero-banner-current {
    font-size: 16px;
    text-decoration: none;
    color: #7f7973;
}

.hero-banner-tab.active {
    color: #2f2b28;
    font-weight: 700;
}

.hero-banner-sort-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-banner-sort {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 13px;
    color: #8e8882;
}

.hero-banner-current {
    position: relative;
    padding-right: 22px;
    color: #2f2b28;
    font-size: 18px;
    font-weight: 600;
}

.hero-banner-current::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #6f6964;
    border-bottom: 2px solid #6f6964;
    transform: translateY(-70%) rotate(45deg);
}

@media (max-width: 980px) {

    .hero-banner-content {
        padding: 70px 0px;
        max-width: 620px;
    }

    .hero-chain-left,
    .hero-chain-right {
        width: 48vw;
        min-width: 280px;
    }
}

@media (max-width: 640px) {
    .hero-banner-content {
        padding: 50px 0px;
    }

    .hero-banner-desc {
        font-size: 16px;
    }

    .hero-banner-toolbar {
        gap: 20px;
    }

    .hero-banner-tabs {
        gap: 20px;
    }

    .hero-banner-tab,
    .hero-banner-current {
        font-size: 14px;
    }

    .hero-chain-left,
    .hero-chain-right {
        top: 18px;
        opacity: 0.42;
    }

    .hero-necklace-center {
        bottom: 126px;
        width: 120vw;
    }
}