/* ======================================================== ROOT & GLOBAL ======================================================== */
:root {
    --white: #FFFFFF;
    --black: #000000;
    --blush-pink: #F8C8DC;
    --sage-green: #9CAF88;
    --dusty-rose: #D8A7B1;
    --muted-lavender: #C8B6E2;
    --charcoal-brown: #3E3A39;
    --deep-olive-green: #5F6F52;

    --font-poppins: 'Poppins', sans-serif;
    --font-playfair: 'Playfair Display', serif;
    --font-dmsans: 'DM Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-poppins);
    color: var(--charcoal-brown);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, .hero-title, .section-title-serif {
    font-family: var(--font-playfair);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ======================================================== NAVBAR ======================================================== */
.main-header {
    background-color: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    
}

.logo-circle {
    width: 45px;
    height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--font-playfair);
    font-size: 12px;
    line-height: 1;
    font-weight: bold;
}

.logo-text {
    font-family: var(--font-playfair);
    font-size: 20px;
    font-weight: 700;
    color: var(--charcoal-brown);
    line-height: 1;
}

.logo-text span {
    display: block;
    font-family: var(--font-poppins);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #777777;
    margin-top: 2px;
}

.logo-text {
    display: flex;
    align-items: center;
}

.logo-title-image {
    height: 45px;
    width: auto;
    display: block;
}

.nav-bar ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-bar ul li a {
    font-size: 14px;
    color: #666666;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-bar ul li a.active, 
.nav-bar ul li a:hover {
    color: var(--deep-olive-green);
    border-bottom: 2px solid var(--deep-olive-green);
}

.cart-btn {
    background-color: var(--deep-olive-green);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cart-btn:hover {
    background-color: var(--charcoal-brown);
    transform: translateY(-1px);
}

/* ======================================================== HERO SECTION ======================================================== */
.hero {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), 
                url('https://images.unsplash.com/photo-1561181286-d3fee7d55364?q=80&w=1200') no-repeat center center/cover;
    padding: 130px 0;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    font-family: var(--font-playfair);
    font-style: italic;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--deep-olive-green);
    color: var(--white);
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-poppins);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--charcoal-brown);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ======================================================== FEATURED COLLECTIONS ======================================================== */
.featured {
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-size: 28px;
    color: var(--charcoal-brown);
    margin-bottom: 40px;
    font-weight: 500;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--muted-lavender);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-title {
    font-family: var(--font-poppins);
    font-size: 20px;
    color: var(--charcoal-brown);
    margin-bottom: 2px;
}

.product-price {
    font-size: 15px;
    color: #555555;
    margin-bottom: 12px;
    font-weight: 500;
}

.btn-order {
    background-color: var(--deep-olive-green);
    color: var(--white);
    width: 100%;
    padding: 9px 0;
    border: none;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-order:hover {
    background-color: var(--charcoal-brown);
}

/* ======================================================== FLIP CARD STYLES ======================================================== */
.product-card {
    perspective: 1000px;
    position: relative;
}

.flip-inner {
    transition: transform 0.6s;
    transform-style: preserve-3d;
    position: relative;
}

.product-card.is-flipped .flip-inner {
    transform: rotateY(180deg);
}

.flip-front,
.flip-back {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.flip-front {
    position: relative;
}

.flip-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.product-desc-text {
    font-size: 14px;
    color: #333333;
    margin-bottom: 12px;
    text-align: center;
}

.back-order {
    background-color: var(--deep-olive-green);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.back-order:hover { background-color: var(--charcoal-brown); }

/* ======================================================== OCCASIONS SECTION ======================================================== */
.occasions {
    background-color: #F9F9F9;
    padding: 60px 0;
    text-align: center;
}

.section-subtitle-serif {
    font-family: var(--font-playfair);
    font-size: 22px;
    color: #555555;
    margin-bottom: 5px;
}

.section-title-large {
    font-family: var(--font-playfair);
    font-size: 32px;
    text-transform: uppercase;
    color: #222222;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.occasion-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.occasion-card {
    background-color: var(--white);
    padding: 35px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.occasion-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.05);
}

.occasion-icon-wrap {
    width: 45px;
    height: 45px;
    background-color: var(--blush-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    color: var(--charcoal-brown);
    font-size: 18px;
}

.occasion-icon-wrap img {
    width: 20px;
    height: 20px;
}

.occasion-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 8px;
    font-family: var(--font-poppins);
}

.occasion-card p {
    font-size: 12px;
    color: #777777;
    line-height: 1.4;
}

/* ======================================================== TESTIMONIALS ======================================================== */
.testimonials {
    background-color: var(--deep-olive-green);
    padding: 60px 0;
    text-align: center;
}

.testi-title {
    color: var(--white);
    text-transform: uppercase;
    font-size: 22px;
    font-family:var(--font-poppins);
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background-color: #F0F2EE;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #D4AF37;
    font-size: 16px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 12px;
    color: #444444;
    line-height: 1.5;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 13px;
    font-weight: 600;
    color: #111111;
}

.testimonial-author span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #666666;
    margin-top: 2px;
}

/* ======================================================== PROMOTION BANNER ======================================================== */
.promo-banner {
    background: linear-gradient(rgba(214, 40, 150, 0.4), rgba(214, 40, 150, 0.4)), 
                url('https://images.unsplash.com/photo-1526047932273-341f2a7631f9?q=80&w=1200') no-repeat center center/cover;
    padding: 40px 0;
    color: var(--white);
    position: relative;
}

.promo-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo-content p.promo-tag {
    font-size: 22px;
    font-family: var(--font-playfair);
    font-weight: bold;
}

.promo-content h2 {
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 700;
}

.promo-content p.promo-desc {
    font-size: 12px;
    max-width: 600px;
    line-height: 1.4;
    margin-bottom: 15px;
    opacity: 0.9;
}

.promo-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
}

.promo-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.badge-discount {
    background-color: var(--charcoal-brown);
    color: var(--white);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    line-height: 1.1;
}

.badge-discount .num {
    font-size: 24px;
    font-weight: 700;
    display: block;
}

.badge-discount .off {
    font-size: 12px;
    text-transform: uppercase;
}

/* ======================================================== FOOTER ======================================================== */
footer {
    background-color: var(--deep-olive-green);
    color: var(--white);
    padding: 50px 0 30px 0;
    font-size: 13px;
}

footer .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

footer .logo-circle {
    border-color: var(--white);
    color: var(--white);
}

.footer-logo-image{
    height: 50px;
    width: auto;
    display: block;
}

footer .logo-text {
    color: var(--white);
}

footer .logo-text span {
    color: #dddddd;
}

footer .footer-desc {
    margin-top: 15px;
    font-size: 13px;
    opacity: 0.8;
}

.footer-links h4 {
    font-size: 17px;
    font-weight:bolder;
    margin-bottom: 15px;
    color: #dddddd;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    opacity: 0.8;
    transition: all 0.2s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
    padding-left: 2px;
}

.copyright {
    margin-top: 20px;
    font-size: 12px;
    opacity: 0.6;
}

/* ======================================================== COLLECTION ======================================================== */
.collection-title-serif {
    font-family: var(--font-playfair);
    font-size: 32px;
    font-weight: 500;
    color: var(--charcoal-brown);
    margin-bottom: 5px;
}

.collection-subtitle {
    font-size: 14px;
    color: #666666;
    margin-bottom: 40px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.square-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
}

.square-pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.square-pagination .arrow-box,
.square-pagination .num-box {
    background-color: #EFE9DB;
    color: var(--black);
}

.square-pagination .num-box.active {
    background-color: var(--black);
    color: #EFE9DB;
    pointer-events: none;
}

.square-pagination a:hover:not(.active):not(.disabled) {
    background-color: var(--muted-lavender);
    color: var(--charcoal-brown);
}

.square-pagination .disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* =========================================================== OCCASION PAGE ========================================================== */
.occasions-intro {
    text-align: center;
    padding: 60px 0 20px 0;
}

.occasions-main-title {
    font-family: var(--font-playfair);
    font-size: 34px;
    font-weight: 500;
    color: var(--charcoal-brown);
    margin-bottom: 10px;
}

.occasions-main-subtitle {
    font-size: 14px;
    color: #555555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.occasions-list-section {
    padding: 40px 0 8px 0;
}

.occasion-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 70px;
}

.occasion-row.reverse {
    flex-direction: row-reverse;
}

.occasion-image-side {
    flex: 1;
}

.rounded-banner-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
}

.occasion-text-side {
    flex: 1;
    position: relative;
}

.pink-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: var(--blush-pink);
    border-radius: 50%;
    margin-bottom: 12px;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(248, 200, 220, 0.4);
}

.pink-dot img {
    width: 30px;
    height: 30px;
}

.occasion-heading {
    font-family: var(--font-playfair);
    font-size: 32px;
    color: var(--charcoal-brown);
    margin-bottom: 10px;
    font-weight: 500;
}

.occasion-description {
    font-size: 13px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.price-list-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #EFE9DB;
    padding: 10px 18px;
    border-radius: 6px;
}

.item-name {
    font-size: 13px;
    color: var(--charcoal-brown);
    font-weight: 500;
}

.price-action-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.item-price {
    font-size: 12px;
    color: #444444;
}

.btn-mini-order {
    background-color: var(--deep-olive-green);
    color: var(--white);
    border: none;
    padding: 4px 16px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-mini-order:hover {
    background-color: var(--charcoal-brown);
}

/* ============================================================ ORDERS PAGE ===================================================== */
.orders-section-header {
    padding: 50px 0 20px 0;
}

.orders-title {
    font-family: var(--font-playfair);
    font-size: 32px;
    color: var(--charcoal-brown);
    margin-bottom: 4px;
    font-weight: 500;
}

.orders-subtitle {
    font-size: 14px;
    color: #666666;
}

.orders-history-list {
    padding-bottom: 60px;
}

.order-card {
    background-color: #EAEAEA;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.order-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.meta-left h3 {
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
}

.order-date {
    font-size: 12px;
    color: #666666;
    margin-bottom: 12px;
}

.order-items-summary {
    font-size: 13px;
    margin-bottom: 12px;
}

.order-items-summary .label {
    font-weight: 600;
    color: var(--charcoal-brown);
    display: block;
    margin-bottom: 2px;
}

.order-items-summary ul {
    list-style-type: none;
    padding-left: 12px;
}

.order-items-summary ul li::before {
    content: "• ";
    color: var(--charcoal-brown);
}

.order-total-cost {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

.text-right {
    text-align: right;
}

.status-badge {
    font-size: 14px;
    font-weight: 500;
}

.text-green { color: #62825D; }
.text-rose { color: #C25E6B; }
.text-olive { color: var(--deep-olive-green); }

.est-delivery {
    font-size: 12px;
    color: #666666;
    margin-top: 4px;
}

.order-tracking-box {
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.order-tracking-box h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal-brown);
    margin-bottom: 25px;
}

.tracking-timeline-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 650px;
    margin: 0 auto 10px auto;
}

.timeline-line-bg {
    position: absolute;
    top: 22px;
    left: 40px;
    right: 40px;
    height: 3px;
    background-color: #E2E2E2;
    z-index: 1;
}

.timeline-line-progress {
    height: 100%;
    background-color: #B47A86;
}

.width-33 { width: 33.33%; }
.width-66 { width: 66.66%; }
.width-100 { width: 100%; }

.timeline-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90px;
}

.status-node {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 8px;
}

.status-node.done-rose {
    background-color: var(--dusty-rose);
}

.status-node.done-sage {
    background-color: var(--sage-green);
    color: var(--charcoal-brown);
    font-weight: bold;
}

.status-node.pending-gray {
    background-color: #D3D6DB;
    color: #8A9099;
}

.step-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--black);
    white-space: nowrap;
}

.step-label.inactive {
    color: #999999;
}

/* ============================================================ CONTACT PAGE ============================================== */
.contact-intro {
    text-align: center;
    padding: 60px 0 20px 0;
}

.contact-main-title {
    font-family: var(--font-playfair);
    font-size: 34px;
    font-weight: 500;
    color: var(--charcoal-brown);
    margin-bottom: 10px;
}

.contact-main-subtitle {
    font-size: 14px;
    color: #555555;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.5;
}

.contact-wrap-section {
    padding-bottom: 80px;
    width: 100%;
    display: block;
    clear: both;
}

.contact-grid-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
}

.contact-info-column,
.contact-form-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.info-card-block,
.form-card-block {
    background-color: #EAEAEA;
    border-radius: 16px;
    padding: 30px;
    width: 100%;
}

.info-card-block {
    flex-grow: 1;
}

.info-card-block h3,
.form-card-block h3 {
    font-family: var(--font-poppins);
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 25px;
}

.info-item-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}

.info-icon-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: var(--deep-olive-green);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0;
}

.info-text-details h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 2px;
    align-self: center;
}

.info-text-details p {
    font-size: 12px;
    color: #555555;
    line-height: 1.5;
}

.map-wrapper-box {
    margin-top: 25px;
    border-radius: 16px;
    overflow: hidden;
    height: 260px;
    width: 100%;
    position: relative; 
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.map-wrapper-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.message-form-element {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group-field label {
    font-size: 12px;
    font-weight: 600;
    color: var(--black);
}

.form-group-field input,
.form-group-field select,
.form-group-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D0D0D0;
    border-radius: 8px;
    background-color: #F5F5F5;
    font-family: var(--font-poppins);
    font-size: 13px;
    color: var(--charcoal-brown);
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group-field input:focus,
.form-group-field select:focus,
.form-group-field textarea:focus {
    border-color: var(--deep-olive-green);
}

.form-group-field textarea {
    resize: vertical;
}

.btn-submit-message {
    background-color: var(--deep-olive-green);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 14px 0;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    margin-top: 10px;
    transition: background-color 0.2s ease;
}

.btn-submit-message:hover {
    background-color: var(--charcoal-brown);
}

@media (max-width: 768px) {
    .contact-grid-layout {
        flex-direction: column;
    }
    .map-wrapper-box {
        height: 220px;
    }
}

/* ============================================================= CART PAGE =============================================== */
.cart-section-header {
    text-align: center;
    padding: 60px 0 30px 0;
}

.cart-main-title {
    font-family: var(--font-playfair);
    font-size: 34px;
    font-weight: 500;
    color: var(--charcoal-brown);
    font-weight: 500;
}

.cart-wrap-section {
    padding-bottom: 80px;
    width: 100%;
}

.cart-grid-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.cart-status-column {
    flex: 1.4;
}

.cart-summary-column {
    flex: 1;
    min-width: 320px;
}

.empty-cart-card {
    background-color: #EAEAEA;
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.empty-cart-card p {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
}

.btn-browse {
    display: inline-block;
    background-color: var(--deep-olive-green);
    color: var(--white);
    padding: 8px 32px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.btn-browse:hover {
    background-color: var(--charcoal-brown);
    transform: translateY(-1px);
}

.summary-card-block {
    background-color: #EAEAEA;
    border-radius: 16px;
    padding: 30px;
}

.summary-card-block h3 {
    font-family: var(--font-poppins);
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
}

.summary-pricing-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid #D0D0D0;
    margin-bottom: 25px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--charcoal-brown);
    font-weight: 500;
}

.pricing-row.total-row {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-top: 4px;
}

.price-highlight {
    color: #9E2A2B;
    font-weight: 700;
}

.checkout-form-element {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkout-form-element .form-group-field label {
    font-size: 12px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

.checkout-form-element input,
.checkout-form-element select,
.checkout-form-element textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #D0D0D0;
    border-radius: 6px;
    background-color: #F5F5F5;
    font-family: var(--font-poppins);
    font-size: 13px;
    color: var(--charcoal-brown);
    outline: none;
}

.checkout-form-element input:focus,
.checkout-form-element select:focus,
.checkout-form-element textarea:focus {
    border-color: var(--deep-olive-green);
}

.checkout-form-element input[type="date"] {
    color: #666666;
}

/* --- PAYMENT METHOD SELECTOR INTERFACE --- */
.payment-method-options {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.payment-option-label {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #F5F5F5;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #D0D0D0;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
}

.payment-radio-input {
    width: 16px;
    height: 16px;
    accent-color: var(--deep-olive-green);
}

/* --- INLINE GCASH DISPLAY PANEL --- */
.gcash-panel-box {
    display: none; /* Controlled dynamically by JavaScript toggle engine */
    background-color: var(--white);
    border: 2px dashed var(--deep-olive-green);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-top: 15px;
}

.gcash-panel-box h4 {
    font-family: var(--font-poppins);
    font-size: 15px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 8px;
}

.gcash-panel-instructions {
    font-size: 12px;
    color: #666666;
    margin-bottom: 12px;
    line-height: 1.4;
}

.qr-code-placeholder-frame {
    width: 150px;
    height: 150px;
    background-color: #F5F5F5;
    border: 1px dashed #777777;
    margin: 0 auto 12px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.qr-frame-label {
    font-size: 11px;
    color: #777777;
}

.gcash-label-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--deep-olive-green);
    margin-bottom: 2px;
}

.gcash-number-display {
    font-size: 15px;
    font-weight: 700;
    color: var(--charcoal-brown);
    letter-spacing: 0.5px;
}

.btn-place-order {
    background-color: var(--deep-olive-green);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 12px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-align: center;
    margin-top: 10px;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.btn-place-order:hover {
    background-color: var(--charcoal-brown);
    box-shadow: 0 5px 12px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .cart-grid-layout {
        flex-direction: column;
        gap: 30px;
    }
    .cart-status-column, 
    .cart-summary-column {
        width: 100%;
    }
}

/* ======================================================== MOBILE RESPONSIVE QUERY (425px) ======================================================== */
@media (max-width: 425px) {
    /* --- GLOBAL & CONTAINERS --- */
    .container {
        padding: 0 15px; /* Slightly tighter padding for small screens */
    }

    body {
        font-size: 13px; /* Slightly smaller base text */
    }

    /* --- NAVBAR --- */
    .main-header .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .nav-bar ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .nav-bar ul li a {
        font-size: 13px;
    }

    .cart-btn {
        width: 100%;
        justify-content:flex-end;
        padding: 10px;
    }

    /* --- HERO SECTION --- */
    .hero {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    /* --- HOME & COLLECTION GRIDS --- */
    .product-grid,
    .collection-grid {
        grid-template-columns: 1fr; /* Forces single column stacking */
        gap: 20px;
    }

    .product-image {
        height: 220px; /* Lowers image height slightly to maintain proportions */
    }

    /* --- OCCASIONS PAGE --- */
    .section-title-large {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .occasion-grid {
        grid-template-columns: 1fr;
    }

    .occasion-row,
    .occasion-row.reverse {
        flex-direction: column; /* Stacks image and text vertically */
        gap: 20px;
        margin-bottom: 45px;
    }

    .rounded-banner-img {
        height: 220px;
    }

    /* --- TESTIMONIALS --- */
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* --- PROMO BANNER --- */
    .promo-banner .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .promo-content h2 {
        font-size: 28px;
    }

    .badge-discount {
        width: 100%;
    }

    /* --- SHOPPING CART PAGE --- */
    .cart-grid-layout {
        flex-direction: column;
        gap: 25px;
    }

    .cart-status-column,
    .cart-summary-column {
        width: 100%;
        min-width: 100%;
    }

    .cart-item-row {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px;
        position: relative;
    }

    .cart-item-row div:last-child {
        width: 100%;
        justify-content: space-between;
        display: flex;
        align-items: center;
    }

    /* Find these inside your @media (max-width: 425px) block and replace them completely */
    .payment-method-options {
        display: flex;
        flex-direction: column !important;
        gap: 10px;
        width: 100%;
    }
    
    /* --- ORDERS PAGE & TRACKING --- */
    .order-card-meta {
        flex-direction: column;
        gap: 15px;
    }

    .text-right {
        text-align: left; /* Flips status tags to the left side */
    }

    .tracking-timeline-wrapper {
        flex-direction: column; /* Heavy modification: switches horizontal timeline to vertical */
        align-items: flex-start;
        gap: 25px;
        padding-left: 20px;
    }

    .timeline-line-bg {
        left: 41px;
        top: 20px;
        bottom: 20px;
        width: 3px;
        height: auto; /* Axis line flips from horizontal width to vertical height */
    }

    .timeline-line-progress {
        width: 100%;
    }

    .width-33 { height: 25%; width: 100%; }
    .width-66 { height: 60%; width: 100%; }
    .width-100 { height: 100%; width: 100%; }

    .timeline-step {
        flex-direction: row;
        gap: 15px;
        width: 100%;
        justify-content: flex-start;
    }

    .status-node {
        margin-bottom: 0;
    }

    /* --- CONTACT PAGE --- */
    .contact-grid-layout {
        flex-direction: column;
        gap: 25px;
    }

    .info-card-block,
    .form-card-block {
        padding: 20px;
    }

    .map-wrapper-box {
        height: 200px;
    }

    /* --- FOOTER --- */
    footer .container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    footer .logo {
        justify-content: center;
    }

    .footer-links ul li a:hover {
        padding-left: 0; /* Clear slider offset animation on small tap surfaces */
    }
}

/* ======================================================== ANIMATIONS ======================================================== */
@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Load Animation Class */
.page-animate-load {
    animation: pageFadeIn 0.6s ease-out forwards;
}

/* Scroll Animation Inactive Class */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

/* Scroll Animation Active Class triggered by JS */
.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   HAMBURGER NAV + MOBILE HEADER
   ============================================================ */

/* The button — hidden on desktop */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    flex-shrink: 0;
    z-index: 1001;
}

.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--charcoal-brown);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animate to ✕ when open */
.hamburger-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile breakpoint ── */
@media (max-width: 768px) {

    /* Show hamburger */
    .hamburger-btn { display: flex; }

    /* Header: single row — logo | cart-icon + hamburger */
    .main-header .container {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 0 !important;
        text-align: left !important;
    }

    /* Right-side group: cart icon then hamburger */
    .cart-btn {
        order: 2;
        display: flex !important;
        align-items: center;
        padding: 7px 9px !important;
        border-radius: 6px;
        width: auto !important;
    }

    /* Hide the CART text, show icon only */
    .cart-label { display: none; }

    .hamburger-btn { order: 3; margin-left: 4px; }

    /* Nav collapses below the header row */
    .nav-bar {
        order: 4;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    /* Open state */
    .nav-bar.nav-open { max-height: 400px; }

    /* Stack nav links vertically */
    .nav-bar ul {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        padding: 6px 0 12px;
    }

    .nav-bar ul li a {
        display: block;
        padding: 12px 4px !important;
        font-size: 15px !important;
        border-bottom: 1px solid rgba(0,0,0,0.07);
    }

    .nav-bar ul li:last-child a { border-bottom: none; }
}

/* Also override the old 425px stacked-column nav rule */
@media (max-width: 425px) {
    .main-header .container {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 0 !important;
        text-align: left !important;
    }

    .cart-btn {
        width: auto !important;
        padding: 7px 9px !important;
    }

    .cart-label { display: none; }
}

/* ============================================================
   TESTIMONIAL OVERFLOW FIX
   ============================================================ */
.testimonial-card {
    overflow: hidden;
    word-break: break-word;
    overflow-wrap: break-word;
}

.testimonial-text {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

@media (max-width: 425px) {
    .testimonial-card { padding: 22px 16px; }
    .testimonial-text {
        -webkit-line-clamp: 7;
        font-size: 13px;
    }
}

/* ================================================================
   TESTIMONY / LEAVE A REVIEW SECTION
   
   style_patch.css — Append these styles to the END of style.css
   ================================================================ */

/* ---- TESTIMONY / LEAVE A REVIEW SECTION ---- */
.testimony-section {
    background-color: #FAFAF8;
    padding: 60px 0;
}

.testimony-heading {
    font-family: var(--font-playfair, 'Playfair Display', serif);
    font-size: 28px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 6px;
}

.testimony-subheading {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-bottom: 32px;
}

.testimony-form-card {
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 36px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.testimony-form-card .form-group-field {
    margin-bottom: 20px;
}

.testimony-form-card .form-group-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    margin-bottom: 8px;
}

.testimony-form-card .form-group-field input,
.testimony-form-card .form-group-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border .2s;
}

.testimony-form-card .form-group-field input:focus,
.testimony-form-card .form-group-field textarea:focus {
    border-color: #9E2A2B;
}

.testimony-form-card .form-group-field textarea {
    resize: vertical;
    min-height: 100px;
}

/* Star picker */
.star-picker {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}

.star-picker .star {
    font-size: 30px;
    color: #ddd;
    cursor: pointer;
    transition: color .15s, transform .1s;
    line-height: 1;
    user-select: none;
}

.star-picker .star:hover,
.star-picker .star.active {
    color: #D4AF37;
    transform: scale(1.15);
}

/* Submit button */
.btn-submit-review {
    width: 100%;
    padding: 13px;
    background: #9E2A2B;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: .5px;
    transition: background .2s;
    margin-top: 4px;
}

.btn-submit-review:hover { background: #7d1f20; }
.btn-submit-review:disabled { background: #ccc; cursor: not-allowed; }

/* ---- Responsive ---- */
@media (max-width: 600px) {
    .testimony-form-card {
        padding: 24px 20px;
    }
}

/* ================================================================
   ADMIN PANEL STYLES
   Used by: admin/index.php (Login) and admin/dashboard.php
   ================================================================ */

/* ── Admin Body Overrides ──────────────────────────────────── */
body.admin-body {
  background: #f5f0ee;
  color: #1a1a1a;
  line-height: normal;
}

body.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #f5f0ee;
}

/* ── Login Card ────────────────────────────────────────────── */
.login-card {
  background: #fff;
  padding: 48px 40px;
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.login-card h1 {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.login-card p {
  font-size: 13px;
  color: #888;
  margin-bottom: 30px;
}

.login-card label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  margin-bottom: 6px;
  margin-top: 16px;
}

.login-card input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border 0.2s;
}

.login-card input:focus {
  border-color: #9E2A2B;
}

.btn-login {
  width: 100%;
  margin-top: 24px;
  padding: 12px;
  background: #9E2A2B;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.btn-login:hover {
  background: #7d1f20;
}

.login-error {
  background: #fde8e8;
  color: #9E2A2B;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  margin-top: 16px;
}

.admin-brand {
  font-size: 28px;
  font-weight: 700;
  color: #9E2A2B;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

/* ── Dashboard Layout ──────────────────────────────────────── */
.layout {
  display: flex;
  min-height: 100vh;
}

/* ── Sidebar ───────────────────────────────────────────────── */
.sidebar {
  width: 220px;
  background: #1a1a1a;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 28px 0;
  flex-shrink: 0;
}

.sidebar .brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #f9a8a8;
  padding: 0 24px 28px;
  border-bottom: 1px solid #333;
}

.admin-title-image {
  height: 60px;
  width: auto;
  display: block;
}

.admin-logo-image {
  height: 150px;
  width: auto;
  display: block;
  margin-right: 8px;
}

.sidebar nav {
  margin-top: 20px;
}

.sidebar nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 14px;
  color: #aaa;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.sidebar nav a:hover,
.sidebar nav a.active {
  background: #2d2d2d;
  color: #fff;
}

.sidebar nav a .badge {
  margin-left: auto;
  background: #9E2A2B;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
}

.sidebar .logout {
  margin-top: auto;
  padding: 24px;
}

.sidebar .logout a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
}

.sidebar .logout a:hover {
  color: #f9a8a8;
}

/* ── Main Content Area ─────────────────────────────────────── */
.admin-main {
  flex: 1;
  padding: 36px 40px;
  overflow-x: auto;
}

.page-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.page-sub {
  font-size: 13px;
  color: #888;
  margin-bottom: 28px;
}

/* ── Stat Cards ────────────────────────────────────────────── */
.stats {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  flex: 1;
  min-width: 150px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.stat-card .num {
  font-size: 28px;
  font-weight: 700;
  color: #9E2A2B;
}

.stat-card .lbl {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}

/* ── Table Card ────────────────────────────────────────────── */
.table-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.table-card table {
  width: 100%;
  border-collapse: collapse;
}

.table-card thead th {
  background: #fafafa;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  text-align: left;
  border-bottom: 1px solid #eee;
  white-space: nowrap;
}

.table-card tbody td {
  padding: 13px 16px;
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

.table-card tbody tr:last-child td {
  border-bottom: none;
}

.table-card tbody tr:hover td {
  background: #fafafa;
}

/* ── Table Utility Classes ─────────────────────────────────── */
.td-empty {
  text-align: center;
  color: #aaa;
  padding: 40px;
}

.td-small {
  font-size: 12px;
  color: #888;
}

.td-mono {
  font-size: 12px;
  font-family: monospace;
}

.td-desc {
  max-width: 200px;
  font-size: 12px;
  color: #666;
}

.td-message {
  max-width: 260px;
}

.td-review {
  max-width: 220px;
  font-size: 13px;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.review-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
  max-height: 6em;
}

.td-action-flex {
  display: flex;
  gap: 6px;
}

/* ── Status Pills & Selects ────────────────────────────────── */
.status-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

select.status-select {
  font-size: 12px;
  padding: 4px 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
}

/* ── Admin Buttons ─────────────────────────────────────────── */
.btn-save {
  background: #9E2A2B;
  color: #fff;
  border: none;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  font-weight: 500;
}

.btn-save:hover { background: #7d1f20; }

.btn-save-lg {
  padding: 10px 24px;
  font-size: 14px;
}

.btn-danger {
  background: #dc2626;
  color: #fff;
  border: none;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  font-weight: 500;
}

.btn-danger:hover { background: #b91c1c; }

.btn-success {
  background: #16a34a;
  color: #fff;
  border: none;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  font-weight: 500;
}

.btn-success:hover { background: #15803d; }

.btn-read {
  background: #eee;
  color: #444;
  border: none;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
}

/* ── Order Update Form ─────────────────────────────────────── */
.order-update-form {
  display: flex;
  gap: 6px;
  align-items: center;
}

/* ── Table Amount ──────────────────────────────────────────── */
.admin-amount {
  font-weight: 600;
  color: #9E2A2B;
}

.items-cell {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Product Images ────────────────────────────────────────── */
.product-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #eee;
}

.product-img-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 1px solid #eee;
}

/* ── Stars (Admin) ─────────────────────────────────────────── */
.stars-display {
  color: #D4AF37;
  font-size: 14px;
  letter-spacing: 1px;
}

/* ── Testimonial Row States ────────────────────────────────── */
.testi-pending {
  background: #fffbeb;
  border-left: 3px solid #f59e0b;
}

.testi-approved {
  background: #f0fdf4;
  border-left: 3px solid #22c55e;
}

.status-live {
  color: #16a34a;
  font-size: 12px;
  font-weight: 500;
}

.status-pending-label {
  color: #d97706;
  font-size: 12px;
  font-weight: 500;
}

.status-read {
  font-size: 12px;
  color: #aaa;
}

/* ── Unread Message Row ────────────────────────────────────── */
.unread td {
  background: #fff8f8;
  font-weight: 500;
}

/* ── Add Product Card ──────────────────────────────────────── */
.add-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 28px;
  margin-bottom: 24px;
}

.add-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1a1a1a;
}

/* ── Admin Form Layout ─────────────────────────────────────── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row.triple {
  grid-template-columns: 1fr 1fr 1fr;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #555;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #9E2A2B;
}

.form-group textarea {
  resize: vertical;
  min-height: 70px;
}

/* ── Image Upload Divider ──────────────────────────────────── */
.upload-or {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  font-size: 12px;
  color: #aaa;
}

.upload-or::before,
.upload-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #eee;
}

/* ── Image Preview ─────────────────────────────────────────── */
.img-preview {
  margin-top: 10px;
  display: none;
}

.img-preview img {
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #eee;
}

/* ── Admin Alerts ──────────────────────────────────────────── */
.alert-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 16px;
}

.alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 16px;
}

/* Social Icons - Contact Page */
.social-icons-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 6px;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f0eb;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-icon-link:hover {
    transform: translateY(-3px);
    background-color: #e8ddd3;
}

.social-icon-link img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* ── Video Showcase Section ── */
.video-showcase {
    background-color: #5F6F52;
    padding: 60px 0;
}

.video-showcase .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.video-wrapper {
    display: flex;
    flex-direction: column;
    background-color: #5F6F52;
    padding: 60px;
    gap: 14px;
}

.video-label {
    font-family: 'Playfair Display', serif;
    color: #f5f0eb;
    font-size: 2rem;
    font-weight:lighter;
    letter-spacing: 0.03em;
    margin: 0;
    text-align: center;
    padding-bottom: 10px;   
}

.video-frame-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.video-frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

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

/* ================================================================
   COMPREHENSIVE RESPONSIVE FIXES
   Breakpoints: 1024px (tablet-lg), 768px (tablet), 480px, 425px (mobile)
   ================================================================ */

/* ── Tablet Large (1024px) ──────────────────────────────── */
@media (max-width: 1024px) {
    /* Products / Collections: 3 → 2 columns */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Occasions: 4 → 2 columns */
    .occasion-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Testimonials: 3 → 2 columns */
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hero shrink */
    .hero-title { font-size: 40px; }

    /* Promo banner: stack on tablet */
    .promo-banner .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .badge-discount { width: 160px; margin: 0 auto; }

    /* Occasion rows: smaller gaps */
    .occasion-row,
    .occasion-row.reverse {
        gap: 30px;
    }

    /* Admin: tighter padding */
    .admin-main { padding: 28px 24px; }

    /* Admin table: allow scroll */
    .table-card { overflow-x: auto; }
}

/* ── Tablet (768px) — already partially handled above, adding missing rules ── */
@media (max-width: 768px) {
    /* Hero */
    .hero { padding: 90px 0; }
    .hero-title { font-size: 34px; }
    .hero-subtitle { font-size: 16px; }

    /* Products: 2 → 2 columns (keep 2 col at 768) */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Occasions: 4 → 2 */
    .occasion-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Testimonials: 3 → 1 */
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Occasion rows: stack */
    .occasion-row,
    .occasion-row.reverse {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 50px;
    }
    .rounded-banner-img { height: 260px; }

    /* Footer */
    footer .container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    footer .logo { justify-content: center; }
    .footer-links ul li a:hover { padding-left: 0; }

    /* Cart */
    .cart-grid-layout {
        flex-direction: column;
        gap: 28px;
    }
    .cart-status-column,
    .cart-summary-column {
        width: 100%;
        min-width: unset;
    }

    /* Contact */
    .contact-grid-layout {
        flex-direction: column;
        gap: 24px;
    }
    .map-wrapper-box { height: 220px; }

    /* Promo */
    .promo-banner .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .promo-meta { justify-content: center; }
    .badge-discount { width: 160px; margin: 0 auto; }

    /* Orders tracking: horizontal → vertical */
    .tracking-timeline-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        padding-left: 20px;
    }
    .timeline-line-bg {
        left: 41px;
        top: 20px;
        bottom: 20px;
        width: 3px;
        height: auto;
        right: auto;
    }
    .timeline-line-progress { width: 100%; }
    .width-33 { height: 25%; width: 100%; }
    .width-66 { height: 60%; width: 100%; }
    .width-100 { height: 100%; width: 100%; }
    .timeline-step {
        flex-direction: row;
        gap: 14px;
        width: 100%;
    }
    .status-node { margin-bottom: 0; }

    /* Order card meta */
    .order-card-meta {
        flex-direction: column;
        gap: 12px;
    }
    .text-right { text-align: left; }

    /* ── ADMIN PANEL TABLET ── */
    .layout { flex-direction: column; }

    .sidebar {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        padding: 12px 16px;
        gap: 8px;
    }

    .sidebar .brand {
        flex-direction: row;
        padding: 0;
        border-bottom: none;
        gap: 10px;
        margin-right: auto;
    }

    .admin-logo-image { height: 40px; }
    .admin-title-image { height: 28px; }

    .sidebar nav {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px;
        margin-top: 0;
        width: 100%;
    }

    .sidebar nav a {
        padding: 8px 14px;
        font-size: 13px;
        border-radius: 6px;
        flex: 1 1 auto;
        justify-content: center;
        text-align: center;
    }

    .sidebar .logout {
        padding: 0 0 0 8px;
        margin-top: 0;
        display: flex;
        align-items: center;
    }

    .admin-main {
        padding: 24px 16px;
        overflow-x: auto;
    }

    /* Admin form rows: 2-col → 1-col */
    .form-row,
    .form-row.triple {
        grid-template-columns: 1fr;
    }

    /* Stats: wrap to 2 per row */
    .stats { flex-wrap: wrap; }
    .stat-card { min-width: calc(50% - 8px); }

    /* Admin tables: horizontal scroll */
    .table-card { overflow-x: auto; }
    .table-card table { min-width: 640px; }
}

/* ── Mobile (480px) ─────────────────────────────────────── */
@media (max-width: 480px) {
    /* Products: 2 → 1 */
    .product-grid,
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-image { height: 230px; }

    /* Occasions: 2 → 1 */
    .occasion-grid { grid-template-columns: 1fr; }

    /* Hero */
    .hero { padding: 80px 0; }
    .hero-title { font-size: 28px; }
    .hero-subtitle { font-size: 14px; }

    /* Promo text */
    .promo-content h2 { font-size: 26px; }

    /* Section title */
    .section-title-large { font-size: 24px; margin-bottom: 22px; }

    /* Contact & info card padding */
    .info-card-block,
    .form-card-block { padding: 20px; }
    .map-wrapper-box { height: 190px; }

    /* Admin stats: 1 per row on tiny */
    .stat-card { min-width: 100%; }

    /* Admin sidebar nav: icons only approach / wrapping */
    .sidebar nav a {
        font-size: 12px;
        padding: 7px 10px;
    }
}

/* ── Mobile Small (425px) — override/extend existing rules ─ */
@media (max-width: 425px) {

    /* Container */
    .container { padding: 0 14px; }
    body { font-size: 13px; }

    /* ── HERO ── */
    .hero { padding: 70px 0; }
    .hero-title { font-size: 26px; }
    .hero-subtitle { font-size: 14px; }
    .btn-primary { font-size: 14px; padding: 11px 22px; }

    /* ── PRODUCT / COLLECTION GRIDS ── */
    .product-grid,
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .product-image { height: 210px; }

    /* ── OCCASIONS SECTION ── */
    .section-title-large { font-size: 22px; margin-bottom: 20px; }
    .occasion-grid { grid-template-columns: 1fr; }
    .occasion-row,
    .occasion-row.reverse {
        flex-direction: column;
        gap: 18px;
        margin-bottom: 40px;
    }
    .rounded-banner-img { height: 200px; }
    .occasion-heading { font-size: 26px; }

    /* ── TESTIMONIALS ── */
    .testimonial-grid { grid-template-columns: 1fr; gap: 16px; }
    .testimonial-card { padding: 20px 15px; }
    .testimonial-text { font-size: 12px; -webkit-line-clamp: 7; }

    /* ── PROMO BANNER ── */
    .promo-banner .container {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }
    .promo-content h2 { font-size: 24px; }
    .promo-meta { flex-direction: column; align-items: center; gap: 8px; }
    .badge-discount { width: 100%; border-radius: 6px; }

    /* ── FOOTER ── */
    footer .container {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    footer .logo { justify-content: center; }
    .footer-links ul li a:hover { padding-left: 0; }

    /* ── CART ── */
    .cart-grid-layout {
        flex-direction: column;
        gap: 20px;
    }
    .cart-status-column,
    .cart-summary-column {
        width: 100%;
        min-width: unset;
    }
    .cart-item-row {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 8px;
        position: relative;
    }
    .cart-item-row div:last-child {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .payment-method-options {
        flex-direction: column !important;
        gap: 10px;
        width: 100%;
    }

    /* ── ORDERS TRACKING ── */
    .order-card-meta { flex-direction: column; gap: 12px; }
    .text-right { text-align: left; }
    .tracking-timeline-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        padding-left: 18px;
    }
    .timeline-line-bg {
        left: 41px;
        top: 20px;
        bottom: 20px;
        width: 3px;
        height: auto;
        right: auto;
    }
    .timeline-line-progress { width: 100%; }
    .width-33 { height: 25%; width: 100%; }
    .width-66 { height: 60%; width: 100%; }
    .width-100 { height: 100%; width: 100%; }
    .timeline-step { flex-direction: row; gap: 12px; width: 100%; }
    .status-node { margin-bottom: 0; }

    /* ── CONTACT ── */
    .contact-grid-layout { flex-direction: column; gap: 20px; }
    .info-card-block,
    .form-card-block { padding: 18px; }
    .map-wrapper-box { height: 180px; }

    /* ── ADMIN PANEL MOBILE ── */
    .layout { flex-direction: column; }

    .sidebar {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        gap: 12px;
    }

    .sidebar .brand {
        flex-direction: row;
        padding: 0 0 12px 0;
        border-bottom: 1px solid #333;
        gap: 10px;
        justify-content: center;
    }

    .admin-logo-image { height: 36px; }
    .admin-title-image { height: 24px; }

    .sidebar nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        margin-top: 0;
        width: 100%;
    }

    .sidebar nav a {
        padding: 10px 8px;
        font-size: 12px;
        border-radius: 8px;
        justify-content: center;
        text-align: center;
        gap: 4px;
    }

    .sidebar .logout {
        padding: 8px 0 0 0;
        margin-top: 0;
        border-top: 1px solid #333;
        text-align: center;
    }

    .admin-main {
        padding: 18px 14px;
        overflow-x: auto;
    }

    .page-title { font-size: 18px; }
    .page-sub { font-size: 12px; margin-bottom: 20px; }

    /* Admin stats: 1 per row */
    .stats { flex-direction: column; gap: 10px; }
    .stat-card { min-width: unset; width: 100%; padding: 16px 18px; }
    .stat-card .num { font-size: 24px; }

    /* Admin table: scroll */
    .table-card { overflow-x: auto; }
    .table-card table { min-width: 560px; }
    .table-card thead th { font-size: 11px; padding: 10px 12px; }
    .table-card tbody td { font-size: 12px; padding: 10px 12px; }

    /* Admin form: all 1-col */
    .form-row,
    .form-row.triple {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Add card */
    .add-card { padding: 20px 16px; }
    .add-card h3 { font-size: 14px; }

    /* Login card */
    .login-card { padding: 32px 24px; }
    .login-card h1 { font-size: 18px; }

    /* Order update form: stack */
    .order-update-form { flex-direction: column; gap: 6px; }
    .order-update-form select,
    .order-update-form .btn-save { width: 100%; }

    /* Testimony form */
    .testimony-form-card { padding: 22px 16px; }
}
