.custom-ring-section {
    position: relative;
    overflow: hidden;
    padding: 52px 0;
    background:
        radial-gradient(circle at 12% 10%, rgba(193, 164, 112, 0.10), transparent 25%),
        radial-gradient(circle at 86% 80%, rgba(193, 164, 112, 0.08), transparent 24%),
        linear-gradient(180deg, #fcfbf8 0%, #f5efe8 52%, #fcfbf8 100%);
}

.custom-ring-shell {
    position: relative;
    display: block;
    width: 100%;
}

.custom-ring-left {
    position: relative;
    width: 100%;
    min-height: 620px;
    padding: 34px;
    border-radius: 32px;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    gap: 28px;
    align-items: stretch;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 242, 236, 0.98) 100%);
    border: 1px solid rgba(40, 31, 22, 0.06);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.custom-ring-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom-ring-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #9c7c55;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "Montserrat", Arial, sans-serif;
}

.custom-ring-title {
    margin: 0 0 16px;
    color: #17120d;
    font-size: clamp(36px, 4vw, 64px);
    line-height: 0.95;
    font-weight: 700;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    max-width: 760px;
}

.custom-ring-lang-switch {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    margin: 0 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(44, 33, 23, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.custom-ring-lang-btn {
    min-width: 94px;
    min-height: 36px;
    padding: 8px 16px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: #6b6055;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Montserrat", Arial, sans-serif;
    transition: all 0.25s ease;
}

.custom-ring-lang-btn:hover,
.custom-ring-lang-btn.active {
    background: linear-gradient(180deg, #1d1712 0%, #120d09 100%);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(19, 14, 10, 0.14);
}

.custom-ring-copy {
    position: relative;
    max-width: 820px;
    min-height: 182px;
}

.custom-ring-text {
    display: none;
    margin: 0 0 20px;
    color: #665a4f;
    font-size: 16px;
    line-height: 1.85;
    text-align: justify;
}

.custom-ring-text.active {
    display: block;
}

.custom-ring-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 2px;
}

.custom-ring-btn {
    min-width: 180px;
    min-height: 48px;
    padding: 0 22px;
    border: none;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.35px;
    text-transform: uppercase;
    font-family: "Montserrat", Arial, sans-serif;
    transition: all 0.3s ease;
}

.custom-ring-btn i {
    font-size: 16px;
    line-height: 1;
}

.custom-ring-btn-whatsapp {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #b88a52 0%, #e0b878 52%, #a7743e 100%);
    color: #ffffff;
    box-shadow:
        0 16px 34px rgba(196, 154, 98, 0.35),
        0 0 0 rgba(196, 154, 98, 0.45);
    animation: rajmudraWhatsappDance 2.6s ease-in-out infinite;
    transform-origin: center;
}

/* bright moving highlight */
.custom-ring-btn-whatsapp::before {
    content: "";
    position: absolute;
    top: -55%;
    left: -85%;
    width: 42%;
    height: 210%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.16) 35%,
        rgba(255, 255, 255, 0.72) 50%,
        rgba(255, 255, 255, 0.16) 65%,
        transparent 100%
    );
    transform: rotate(22deg);
    animation: rajmudraWhatsappShine 2.6s ease-in-out infinite;
    pointer-events: none;
}

/* soft glowing border effect */
.custom-ring-btn-whatsapp::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.28),
        0 0 22px rgba(224, 184, 120, 0.55);
    opacity: 0;
    animation: rajmudraWhatsappGlow 2.6s ease-in-out infinite;
    pointer-events: none;
}

.custom-ring-btn-whatsapp > * {
    position: relative;
    z-index: 1;
}

@keyframes rajmudraWhatsappDance {
    0%, 100% {
        transform: translateX(0) scale(1);
        box-shadow:
            0 16px 34px rgba(196, 154, 98, 0.35),
            0 0 0 0 rgba(196, 154, 98, 0.42);
    }

    10% {
        transform: translateX(6px) scale(1.035);
    }

    20% {
        transform: translateX(-6px) scale(1.035);
    }

    30% {
        transform: translateX(5px) scale(1.025);
    }

    40% {
        transform: translateX(-5px) scale(1.025);
    }

    50% {
        transform: translateX(0) scale(1.04);
        box-shadow:
            0 20px 44px rgba(196, 154, 98, 0.48),
            0 0 0 12px rgba(196, 154, 98, 0);
    }

    100% {
        transform: translateX(0) scale(1);
    }
}

@keyframes rajmudraWhatsappShine {
    0% {
        left: -85%;
        opacity: 0;
    }

    16% {
        opacity: 1;
    }

    45% {
        left: 135%;
        opacity: 0;
    }

    100% {
        left: 135%;
        opacity: 0;
    }
}

@keyframes rajmudraWhatsappGlow {
    0%, 100% {
        opacity: 0;
    }

    35%, 55% {
        opacity: 1;
    }
}

.custom-ring-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(122, 85, 47, 0.28);
    color: #ffffff;
}

.custom-ring-btn-secondary {
    border: 1px solid rgba(28, 21, 15, 0.12);
    background: rgba(255, 255, 255, 0.84);
    color: #17120d;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.custom-ring-btn-secondary:hover {
    transform: translateY(-2px);
    background: #f8f1e8;
    border-color: rgba(167, 133, 78, 0.24);
    color: #17120d;
}

.custom-ring-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
    max-width: 860px;
}

.custom-ring-highlight-card {
    padding: 16px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(37, 28, 20, 0.06);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.custom-ring-highlight-card strong {
    display: block;
    margin-bottom: 6px;
    color: #17120d;
    font-size: 18px;
    font-weight: 700;
    font-family: "Cormorant Garamond", serif;
}

.custom-ring-highlight-card span {
    display: block;
    color: #6c6156;
    font-size: 12px;
    line-height: 1.5;
}

.custom-ring-visual-stage {
    position: relative;
    width: 100%;
    min-height: 540px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.38) 28%, rgba(255, 255, 255, 0) 66%),
        linear-gradient(180deg, #f0e8de 0%, #e4dbcf 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 18px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.custom-ring-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 4;
    min-height: 34px;
    padding: 0 15px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: #17120d;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-family: "Montserrat", Arial, sans-serif;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
}

.custom-ring-centerpiece {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 92px;
}

.custom-ring-main-image {
    width: 100%;
    max-width: 260px;
    object-fit: contain;
    filter: drop-shadow(0 22px 22px rgba(0, 0, 0, 0.18));
    animation: customRingFloatMain 5s ease-in-out infinite;
}

.custom-ring-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(165, 131, 77, 0.16);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.custom-ring-orbit-one {
    width: 185px;
    height: 185px;
}

.custom-ring-orbit-two {
    width: 285px;
    height: 285px;
}

.custom-ring-orbit-three {
    width: 395px;
    height: 395px;
    opacity: 0.62;
}

.custom-ring-floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 172px;
    max-width: 205px;
    padding: 11px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(37, 28, 20, 0.06);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(6px);
}

.custom-ring-floating-card-top {
    top: 78px;
    left: 18px;
    animation: customRingFloatCardOne 4.8s ease-in-out infinite;
}

.custom-ring-floating-card-bottom {
    right: 18px;
    bottom: 78px;
    animation: customRingFloatCardTwo 5.2s ease-in-out infinite;
}

.custom-ring-floating-card-side {
    left: 34px;
    bottom: 32px;
    animation: customRingFloatCardThree 5.4s ease-in-out infinite;
}

.custom-ring-floating-thumb {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f0e7db 0%, #e6dbcd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.custom-ring-floating-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.12));
}

.custom-ring-floating-info h3 {
    margin: 0 0 3px;
    color: #1a1410;
    font-size: 19px;
    line-height: 1;
    font-weight: 700;
    font-family: "Cormorant Garamond", serif;
}

.custom-ring-floating-info p {
    margin: 0;
    color: #6b6055;
    font-size: 11px;
    line-height: 1.4;
}

.custom-ring-section.custom-ring-animated .custom-ring-content,
.custom-ring-section.custom-ring-animated .custom-ring-visual-stage,
.custom-ring-section.custom-ring-animated .custom-ring-highlight-card {
    animation: customRingFadeUp 0.82s ease both;
}

.custom-ring-section.custom-ring-animated .custom-ring-visual-stage {
    animation-delay: 0.08s;
}

.custom-ring-section.custom-ring-animated .custom-ring-highlight-card:nth-child(2) {
    animation-delay: 0.12s;
}

.custom-ring-section.custom-ring-animated .custom-ring-highlight-card:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes customRingFloatMain {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes customRingFloatCardOne {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes customRingFloatCardTwo {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(7px);
    }
}

@keyframes customRingFloatCardThree {
    0%, 100% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(7px);
    }
}

@keyframes customRingFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1399px) {
    .custom-ring-left {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .custom-ring-visual-stage {
        min-height: 360px;
    }

    .custom-ring-copy {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .custom-ring-section {
        padding: 18px 0 24px;
    }

    .custom-ring-left {
        padding: 18px;
        border-radius: 24px;
        gap: 18px;
    }

    .custom-ring-title {
        font-size: 36px;
    }

    .custom-ring-text {
        font-size: 13px;
        line-height: 1.78;
    }

    .custom-ring-lang-switch {
        width: 100%;
    }

    .custom-ring-lang-btn {
        width: 50%;
        min-width: 0;
        padding: 8px 10px;
    }

    .custom-ring-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .custom-ring-btn {
        width: 100%;
        min-width: 0;
    }

    .custom-ring-highlights {
        grid-template-columns: 1fr;
        margin-top: 18px;
    }

    .custom-ring-visual-stage {
        min-height: 280px;
        border-radius: 22px;
    }

    .custom-ring-centerpiece {
        padding: 30px 74px;
    }

    .custom-ring-main-image {
        max-width: 152px;
    }

    .custom-ring-orbit-one {
        width: 130px;
        height: 130px;
    }

    .custom-ring-orbit-two {
        width: 195px;
        height: 195px;
    }

    .custom-ring-orbit-three {
        width: 260px;
        height: 260px;
    }

    .custom-ring-floating-card {
        min-width: 0;
        max-width: 146px;
        gap: 8px;
        padding: 8px;
    }

    .custom-ring-floating-card-top {
        top: 14px;
        left: 10px;
    }

    .custom-ring-floating-card-bottom {
        right: 10px;
        bottom: 14px;
    }

    .custom-ring-floating-card-side {
        display: none;
    }

    .custom-ring-floating-thumb {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .custom-ring-floating-info h3 {
        font-size: 15px;
    }

    .custom-ring-floating-info p {
        font-size: 10px;
    }
}

@media (max-width: 420px) {
    .custom-ring-title {
        font-size: 32px;
    }

    .custom-ring-floating-card {
        max-width: 132px;
    }

    .custom-ring-centerpiece {
        padding: 36px 56px;
    }
}