/* ===========================
   PRODUCT PAGE HEADER
   =========================== */

.product-page-header {
    background: var(--warm-white);
    padding: 140px 40px 30px;
    box-sizing: border-box;
}

.product-page-header h1 {
    font-family: 'Belleza', serif;
    font-size: clamp(36px, 5vw, 80px);
    font-weight: 400;
    color: var(--dark);
    letter-spacing: 0.01em;
    padding-top: 4rem;
}

/* ===========================
   FEATURED COLLECTIONS
   =========================== */

.featured-collections {
    background: var(--warm-white, #faf9f6);
    max-width: 1536px;
    margin-left: auto;
    margin-right: auto;
    margin: 0 auto;
    margin-top: 67px;
}

/* Header */
.fc-header {
    text-align: center;
    margin-bottom: 40px;
}

.fc-label {
    font-family: 'Figtree', serif;
    font-size: 24px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #888 0%, #221600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    display: inline-block;
    font-weight: 100;
}

.fc-title {
    font-family: 'Belleza', serif;
    font-size: 55px;
    font-weight: 400;
    color: var(--dark, #1a1a1a);
    letter-spacing: 0.01em;
    margin: 0;
}

/* ===========================
   TABS
   =========================== */

.fc-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    margin-bottom: 36px;
    font-size: 20px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.fc-tabs::-webkit-scrollbar {
    display: none;
}

.fc-tab {
    white-space: nowrap;
    flex-shrink: 0;
}

.fc-tab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 8px 0 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: #9a8a72;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
    margin-bottom: -1px;
    letter-spacing: 0.01em;
}

.fc-tab:hover {
    color: var(--dark, #1a1a1a);
}

.fc-tab.active {
    color: #7a6a4f;
    border-bottom-color: #7a6a4f;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    font-size: 20px;
}

/* ===========================
   GRID
   =========================== */

.fc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-bottom: 10rem;
}

/* ===========================
   CARD WRAPPER
   (image + label below it)
   =========================== */

.fc-card-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

/* Wide wrap spans full width */
.fc-card-wrap--wide {
    grid-column: 1 / -1;
}

/* ===========================
   CARD (image container only)
   =========================== */

.fc-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    background: #e8ddd0;
}

/* Large cards (top row) */
.fc-card-wrap:not(.fc-card-wrap--wide) .fc-card {
    /* height: 320px; */
    height: 450px;
}

/* Wide card (bottom) */
.fc-card-wrap--wide .fc-card {
    height: 450px;
    width: 49%;
    margin-top: 45px;
}

/* Background image */
.fc-card__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fc-card-wrap:hover .fc-card__image {
    transform: scale(1.04);
}

/* White gradient overlay —
   HIDDEN by default,
   fades IN on hover            */
.fc-card__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.15) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
    pointer-events: none;
}

.fc-card-wrap:hover .fc-card__gradient {
    opacity: 1;
}

/* Arrow circle — hidden by default, pops on hover */
.fc-card__arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.fc-card__arrow svg {
    width: 20px;
    height: 20px;
    color: #3a3028;
    stroke-width: 1.8;
}

.fc-card-wrap:hover .fc-card__arrow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.fc-card__label {
    font-family: 'Belleza', serif;
    font-size: 20px;
    font-weight: 400;
    color: #2a2018;
    letter-spacing: 0.02em;
    padding: 0 2px;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 900px) {
    .featured-collections {
        padding: 60px 32px;
    }

    .fc-card-wrap:not(.fc-card-wrap--wide) .fc-card {
        height: 260px;
    }

    .fc-card-wrap--wide .fc-card {
        height: 210px;
    }
}

@media (max-width: 640px) {
    .featured-collections {
        padding: 48px 20px;
    }

    .fc-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 0 16px;
    }

    .fc-tabs::-webkit-scrollbar {
        display: none;
    }

    .fc-tab {
        font-size: 13px;
        padding: 6px 0 10px;
    }

    .fc-grid {
        grid-template-columns: 1fr;
    }

    .fc-card-wrap--wide {
        grid-column: 1;
    }

    .fc-card-wrap:not(.fc-card-wrap--wide) .fc-card {
        height: 220px;
    }

    .fc-card-wrap--wide .fc-card {
        height: 200px;
    }
}

@media (max-width: 400px) {
    .fc-card-wrap:not(.fc-card-wrap--wide) .fc-card,
    .fc-card-wrap--wide .fc-card {
        height: 180px;
    }
}

/* ===========================
   RESPONSIVE — PAGE HEADER
   =========================== */

@media (max-width: 768px) {
    .product-page-header {
        padding: 120px 24px 24px;
    }
}

section.subscribe-banner {
    padding: 163px 0px 60px;
}

/* ===========================
   CONTACT SUBSCRIBE BANNER
   =========================== */

.subscribe-banner-contact {
    background: var(--warm-white, #faf9f6);
    max-width: 1536px;
    margin-left: auto;
    margin-right: auto;
    padding: 60px 0;
}

.subscribe-inner-contact {
    display: flex;
    align-items: stretch;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #d0c8b8;
    width: 100%;
    max-width: 1536px;
}

.subscribe-left-contact {
    background: #221b00;
    padding: 40px 60px 40px 44px;
    flex: 0 0 auto;
    width: 560px;
    display: flex;
    align-items: center;
}

.subscribe-left-contact h2 {
    font-family: 'Belleza', serif;
    font-size: clamp(20px, 2.5vw, 55px);
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    white-space: normal;
}

.subscribe-right-contact {
    background: #ffffff;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 24px 28px;
}

.subscribe-form-contact {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0;
    background: #c6b48a;
    border-radius: 5px;
    padding: 8px 4px 8px 20px;
    min-height: 98px;
}

.subscribe-form-contact input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 0;
    font-family: 'Jost', sans-serif;
    font-size: 24px;
    color: #000000;
    background: transparent;
}

.subscribe-form-contact input::placeholder {
    color: #000000;
    font-size: 24px;
    font-family: 'Jost', sans-serif;
}

.subscribe-form-contact button {
    background: #3d3526;
    color: #fff;
    border: none;
    padding: 25px 24px;
    font-family: 'Jost', sans-serif;
    font-size: 24px;
    letter-spacing: 0.04em;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
    /* margin-right: 4px; */
}

.subscribe-form-contact button:hover {
    background: #221b00;
}
@media (max-width: 900px) {
    .subscribe-left-contact {
        width: 260px;
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .subscribe-banner-contact {
        padding: 40px 20px;
    }

    .subscribe-inner-contact {
        flex-direction: column;
        max-width: 100%;
    }

    .subscribe-left-contact {
        width: 100%;
        padding: 24px 20px;
        justify-content: center;
        text-align: center;
    }

    .subscribe-left-contact h2 {
        font-size: clamp(18px, 5vw, 26px);
        white-space: normal;
    }

    .subscribe-right-contact {
        padding: 16px;
        width: 100%;
    }

    .subscribe-form-contact {
        flex-direction: row;
        min-height: 56px;
        padding: 6px 6px 6px 14px;
    }

    .subscribe-form-contact input {
        width: 100%;
        font-size: 14px;
    }

    .subscribe-form-contact button {
        padding: 12px 20px;
        font-size: 14px;
        white-space: nowrap;
        height: auto;
        margin-right: 4px;
    }
}

@media (max-width: 480px) {
    .subscribe-banner-contact {
        padding: 30px 0px;
    }


    .subscribe-form-contact {
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        min-height: auto;
        gap: 8px;
    }

    .subscribe-form-contact input {
        padding: 12px;
        font-size: 14px;
    }

    .subscribe-form-contact button {
        width: 100%;
        margin: 0;
        padding: 14px;
        font-size: 16px;
        text-align: center;
        height: auto;
    }
}

    @media (max-width: 900px) {
    .subscribe-left-contact {
        width: 260px;
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .subscribe-banner-contact {
        padding: 40px 20px;
    }

    .subscribe-inner-contact {
        flex-direction: column;
        max-width: 100%;
    }

    .subscribe-left-contact {
        width: 100%;
        padding: 24px 20px;
        justify-content: center;
        text-align: center;
    }

    .subscribe-left-contact h2 {
        font-size: clamp(18px, 5vw, 26px);
        white-space: normal;
    }

    .subscribe-right-contact {
        padding: 16px;
        width: 100%;
    }

    .subscribe-form-contact {
        flex-direction: row;
        min-height: 56px;
        padding: 6px 6px 6px 14px;
    }

    .subscribe-form-contact input {
        width: 100%;
        font-size: 14px;
        min-width: 0;
    }

    .subscribe-form-contact button {
        padding: 12px 16px;
        font-size: 14px;
        white-space: nowrap;
        height: auto;
        margin-right: 4px;
    }
}

@media (max-width: 480px) {
    .subscribe-banner-contact {
        padding: 30px 0px;
    }


    .subscribe-form-contact {
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        min-height: auto;
        gap: 8px;
    }

    .subscribe-form-contact input {
        padding: 12px;
        font-size: 14px;
    }

    .subscribe-form-contact button {
        width: 100%;
        margin: 0;
        padding: 14px;
        font-size: 16px;
        text-align: center;
        height: auto;
    }
}


/* ===========================
   FOOTER OVERRIDE - Product Page
   =========================== */

.footer-top {
    /* max-width: 1100px; */
    margin: 0 auto;
    /* padding: 77px 40px 40px; */
    width: 100%;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.footer-bottom {
    margin: 0 auto;
    /* max-width: 1100px; */
    /* padding: 30px 40px; */
    max-width: 1536px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom-inner {
    max-width: 100%;
    justify-content: space-between;
}

.footer-copy-bar {
    padding: 14px 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.footer-copy-bar p {
    font-size: 18px;
    white-space: normal;
    word-break: break-word;
    margin-left: -42px;
}

.footer-copy-links {
    font-size: 13px;
    white-space: nowrap;
}

.footer-copy-links a {
    font-size: 18px;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        padding: 40px 20px 30px;
        gap: 24px;
    }

    .footer-col h4 {
        font-size: 28px;
    }

    .footer-col p,
    .footer-col ul li a,
    .footer-contact li {
        font-size: 16px;
    }

    .footer-bottom {
        margin: 0 16px;
        padding: 20px;
        max-width: calc(100% - 32px);
        border-radius: 8px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

      .footer-phone-box {
        justify-content: center;
        width: calc(100% - 31px);
        margin: 0 20px;
        border-radius: 12px;
        padding: 12px 20px;
    }

    .footer-phone-box small {
        font-size: 11px;
    }

    .footer-phone-box strong {
        font-size: 20px;
    }

    .footer-phone-box-icon {
        padding: 8px 10px;
        margin-right: 10px;
    }

    .footer-phone-box-icon img {
        height: 24px;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-copy-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        padding: 16px 20px;
    }

     .footer-copy-bar p {
        font-size: 16px;
        white-space: normal;
        word-break: break-word;
        text-align: center;
        line-height: 1.6;
        margin-left: 0;
    }

    .footer-copy-links {
        font-size: 16px;
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }

    .footer-copy-links a {
        font-size: 16px;
    }

    .fc-card-wrap--wide {
        grid-column: 1;
    }

    .fc-card-wrap--wide .fc-card {
        height: 220px;
        width: 100%;
    }
}
@media (max-width: 768px) {
    .fc-card-wrap--wide {
        grid-column: 1;
    }

    .fc-card-wrap--wide .fc-card {
        height: 220px;
        width: 100%;
    }

   .footer-bottom {
        margin: 0 16px !important;       
        padding: 24px !important;       
        max-width: calc(100% - 32px) !important; 
        border-radius: 8px !important;    
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .footer-phone-box {
        justify-content: center;
    }

    .footer-copy-bar {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 8px;
        padding: 16px 20px !important;
    }

     .footer-copy-bar p,
     .footer-copy-links a {
        font-size: 16px !important;
        text-align: center !important;
        margin-left: 0 !important;
    }
}

    .about-hero-image {
    position: relative;
}

.about-hero-text-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.about-hero-label {
    font-family: 'Belleza', serif;
    font-size: clamp(60px, 12vw, 150px);
    font-weight: 400;
    letter-spacing: 0.08em;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6) 0%, rgba(180,140,80,0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
 }

 /* ===========================
   PRODUCT HERO TEXT OVERLAY
   =========================== */

.product-hero-gradient {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.product-hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Belleza', serif;
    font-size: clamp(80px, 12vw, 180px);
    font-weight: 400;
    letter-spacing: 0.15em;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.45);
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.7);
    z-index: 2;
    pointer-events: none;
    line-height: 1;
}

.about-hero-image {
    position: relative;
    width: 100%;
    height: 500px; /* <-- IMPORTANT */
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

img.about-hero-title-img{
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    height: 170px;
    width: auto;
    display: block;
    margin-bottom: -44px;
}

.about-hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 5, 0.35);
    z-index: 1;
}

img.about-hero-title-img {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    height: 210px;
    width: auto;
    display: block;
    margin-bottom: -44px;
}

.product-page-header,
.featured-collections,
.footer {
    padding-left: 60px;
    padding-right: 60px;
}

/* Subscribe — alisin ang sariling padding, 
   hayaan ang parent na mag-handle */
.subscribe-banner-contact {
    padding-left: 0;
    padding-right: 0;
}

section.subscribe-banner {
    padding-left: 60px;
    padding-right: 60px;
    box-sizing: border-box;
}

.subscribe-inner {
    max-width: 100%;
    margin: 0;
}

.footer-top,
.footer-bottom,
.footer-copy-bar {
    padding-left: 0;
    padding-right: 0;
}

.footer {
    padding-left: 60px;
    padding-right: 60px;
}

.footer-top {
    padding-left: 0;
    padding-right: 0;
}

.footer-bottom {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    border-radius: 10px;
}

.footer-copy-bar {
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 768px) {
    .footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-bottom {
        margin: 0 !important;
        max-width: 100% !important;
        border-radius: 8px !important;
    }
}

.footer,
section.subscribe-banner {
    padding-left: 60px !important;
    padding-right: 60px !important;
    box-sizing: border-box;
}

.footer-top {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.footer-bottom {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    border-radius: 10px;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.footer-copy-bar {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.subscribe-banner-contact {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.subscribe-inner,
.subscribe-inner-contact {
    max-width: 100% !important;
    margin: 0 !important;
    width: 100%;
}

@media (max-width: 768px) {
    .footer,
    section.subscribe-banner {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .footer-bottom {
        border-radius: 8px !important;
    }
}

/* ===========================
   APPLE LAPTOP RESPONSIVE
   1280px - 1440px
   =========================== */
@media (max-width: 1440px) {
    .product-page-header,
    .featured-collections,
    .footer,
    section.subscribe-banner {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    .fc-title {
        font-size: 44px;
    }
}

@media (max-width: 1280px) {
    .product-page-header,
    .featured-collections,
    .footer,
    section.subscribe-banner {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }

    .fc-title {
        font-size: 38px;
    }

    .fc-tab {
        font-size: 16px;
    }

    .fc-card-wrap:not(.fc-card-wrap--wide) .fc-card {
        height: 380px;
    }
}