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

:root {
  /* Brand Identities */
  --primary-ink: #1C1C1C;
  --bg-logo-soft-linen: #EDE8DC;
  
  /* Layout & UI */
  --bg-page-parchment: #F7F4EF;
  --accent-warm-brown: #8B5E3C;
  --white: #FFFFFF;
  
  /* Typography */
  --text-muted-stone: #78716C;
}

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

@font-face {
  font-family: 'Dancing Script';
  src: url('../fonts/Dancing_Script/DancingScript-VariableFont_wght.ttf') format('truetype');
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/Playfair_Display/PlayfairDisplay-VariableFont_wght.ttf') format('truetype');
}

@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato/Lato-Regular.ttf') format('truetype'  );
}

@font-face {
  font-family: 'Montserrat'; 
  src: url('../fonts/Montserrat/Montserrat-Regular.ttf') format('truetype');
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-page-parchment);
    color: var(--primary-ink);
    line-height: 1.6;

    min-height: 100vh;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;

}

header {
    background-color: var(--bg-logo-soft-linen);;

    display: flex;
    justify-content: space-around;
    align-items: center;

    padding: 1rem;
}

.main-container {
    min-height: 100vh;
}

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

.logo-img img {
    width: 100px;
    height: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav ul li button {
    background-color: transparent;
    border: none;
    border-radius: 20px;
    padding: 0;
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* The <a> fills the full button hit-area */
nav ul li button a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--primary-ink);
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li button:hover {
    transform: scale(1.07);
}

nav ul li button:hover a {
    background-color: var(--primary-ink);
    color: var(--bg-logo-soft-linen);
}

nav ul li button.active a {
    background-color: var(--accent-warm-brown);
    color: var(--bg-logo-soft-linen);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-ink);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.svg-icon {
    width: 20px;
    height: 20px;
    display: inline-flex; 
    vertical-align: sub;
}

.feature-svg {
  width: 50px; 
  height: 50px;
  
  filter: invert(41%) sepia(12%) saturate(1914%) hue-rotate(344deg) brightness(92%) contrast(87%);
}

/* HOME CONTENT */
.hero-banner {
    background: linear-gradient(to bottom right, var(--accent-warm-brown), var(--text-muted-stone));
    background-size: cover;
    background-position: center;
    height: 400px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;


    color: var(--bg-logo-soft-linen);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.hero-banner h2 {
    font-size: 3rem;
}

.hero-banner p {
    font-size: 1.5rem;
    margin-top: 1rem;
    max-width: 600px;
}

.banner-buttons {
    margin-top: 2rem;
    display: flex;
    flex-direction: row;

    gap: 1.5rem;
}

.banner-buttons button {
    background-color: var(--bg-logo-soft-linen);
    border: none;
    border-radius: 20px;
    padding: 10px 20px;

    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;

    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.banner-buttons button:hover {
    background-color: var(--accent-warm-brown);   
}

.banner-buttons button:hover a {
    color: var(--bg-logo-soft-linen);
}

.banner-buttons button:hover img {
    filter: brightness(0) invert(1);
}

.banner-buttons button a {
    text-decoration: none;
    color: var(--primary-ink);

    transition: background-color 0.3s ease, color 0.3s ease;
}

.banner-buttons button img{
    transition: filter 0.3s ease;
}

/* DEMO REEL */
.demo-reel {
    background-color: var(--bg-page-parchment);
    padding: 50px 20px;
    text-align: center;
}

.demo-reel h2 {
    margin-bottom: 1.5rem;
}

.demo-reel-video {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.demo-reel-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.main-featured-products {
    background-color: var(--bg-logo-soft-linen);
    padding: 50px 0;
}

.main-featured-products h2{
    text-align: center;
    padding: 20px 0 0;
}

.featured-products-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.featured-product {
    background-color: var(--bg-page-parchment);
    border-radius: 10px;
    padding: 1rem;
    width: 300px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.featured-product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.featured-product h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.featured-product p {
    font-size: 1rem;
    color: var(--text-muted-stone);
}

#home-price {
    font-size: 1.1rem;
    font-family: 'Lato';
    color: var(--accent-warm-brown);
    font-weight: bold;
    margin-top: 0.5rem;
}

.main-why-choose h2 {
    text-align: center;
    margin: 30px auto;
}

.main-reasons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 80%;
    margin: 0 auto;
    gap: 30px;
    margin-bottom: 50px;
}

.main-reasons-item {
    display: flex;
    padding-left: 100px;
    gap: 10px;
}

.main-reasons-item h3 {
    font-size: 1.5rem; 
}

.main-reasons-item p {
    color: var(--text-muted-stone);
}

.main-reasons-item img{
    margin-top: 10px;
}

.main-get-started {
    background: linear-gradient(to bottom right, var(--accent-warm-brown) 30%, var(--text-muted-stone) 70%);
    color: var(--bg-logo-soft-linen);
    text-align: center;
    padding: 50px 20px;
}

.get-started-button button {
    background-color: var(--bg-logo-soft-linen);
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    margin-top: 20px;

    font-family: 'Lato', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;

    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.get-started-button button:hover {
    background-color: var(--accent-warm-brown);   
}


.get-started-button button:hover a {
    color: var(--bg-logo-soft-linen);
}

.get-started-button button:hover img {
    filter: brightness(0) invert(1);
}

.get-started-button button a {
    text-decoration: none;
    color: var(--primary-ink);

    transition: background-color 0.3s ease, color 0.3s ease;
}

.get-started-button button img {
    transition: filter 0.3s ease;
}

/* CATALOG CONTENT */
.main-c-intro{
    background-color: var(white );
    padding: 50px 20px;
    text-align: center;
}

.main-c-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    max-width: 80%;
    margin: 0 auto;
}

.c-grid-item{
    display: flex;
    flex-direction: column;
    height: 100%;

    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    
    padding: 20px;
}

.c-grid-item img {
  width: 100%;
  height: 250px;       /* Forces a consistent height for all images */
  object-fit: cover;   /* Centers and crops without squishing or stretching */
}

.c-grid-item button {
    background-color: var(--accent-warm-brown);
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    margin-top: 15px;

    font-family: 'Lato', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;

    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.c-grid-item button:hover {
    background-color: var(--primary-ink);   
}

.c-grid-item button:hover a {
    color: var(--bg-logo-soft-linen);
}

.c-grid-item button a {
    text-decoration: none;
    color: var(--bg-logo-soft-linen);

    transition: background-color 0.3s ease, color 0.3s ease;
}


.grid-item-description h3 {
    margin-top: 10px;
    font-size: 2rem;
}

.grid-item-description p {
    margin: 10px;
    text-align: left;
    color: var(--text-muted-stone);

    justify-content: center;
}

.grid-item-price{
    border-top: 1px solid var(--accent-warm-brown);
    margin-top: auto; 
    padding-top: 10px;
}

.item-pcs {
    display: flex;
    justify-content: space-between;
}

.main-c-customize {
    max-width: 80%;
    margin: 30px auto;
    padding: 20px;
    text-align: center;   
    
    border: var(--accent-warm-brown) 2px solid;
    border-radius: 12px;
    background-color: var(--bg-logo-soft-linen);
}

.main-c-customize h2 {
    font-size: 2.5rem;
}

.main-c-customize p {
    margin: 20px 0;
    font-size: 1.2rem;
    color: var(--text-muted-stone);
}

.main-c-customize button {
    background-color: var(--accent-warm-brown);
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    margin-top: auto;

    font-family: 'Lato', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;

    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.main-c-customize button:hover {
    background-color: var(--primary-ink);   
}

.main-c-customize button:hover a {
    color: var(--bg-logo-soft-linen);
}

.main-c-customize button a {
    text-decoration: none;
    color: var(--bg-logo-soft-linen);

    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ORDER FORM */
.main-o-intro{
    background-color: var(white);
    padding: 50px 20px;
    text-align: center;
}

.main-o-forms{
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    margin: 0 0 30px;
}

.grid-order-form {
    width: 90%; 
    max-width: 650px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
    "f-name f-name"
    "email phone"
    "product product"
    "quantity quantity"
    "details details"
    "details details"
    "design design"
    "design design"
    "design design"
    "submit submit";
    gap: 20px;

    border: var(--accent-warm-brown) 2px solid;
    border-radius: 20px;
    padding: 20px;

}

.form-fullname {
    grid-area: f-name;
    display: flex;
    flex-direction: column;
}

.form-email {
    grid-area: email;
    display: flex;
    flex-direction: column;
}

.form-phone {
    grid-area: phone;
    display: flex;
    flex-direction: column;
}
.form-product {
    grid-area: product;
    display: flex;
    flex-direction: column;
}
.form-quantity {
    grid-area: quantity;
    display: flex;
    flex-direction: column;
}
.form-details {
    grid-area: details;
    display: flex;
    flex-direction: column;
}
.form-design {
    grid-area: design;
    display: flex;
    flex-direction: column;
}

.grid-order-form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.grid-order-form input, .grid-order-form select, .grid-order-form textarea {
    padding: 10px;
    border: 1px solid var(--accent-warm-brown);
    border-radius: 5px;
    font-size: 1rem;
}

#form-footer {
    text-align: center;
    color: var(--text-muted-stone);
}

.upload-area {
    border: 2px dashed #c9a87c;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    color: #7a5c3a;
}

.upload-area:hover,
.upload-area.drag-over{
    background-color: #fdf5ec;
    border-color: #a0714f;
}

.upload-area img {
    width: 50px;
    height: auto;
    margin-bottom: 10px;
}

.btn-submit {
    grid-area: submit;
    background-color: var(--accent-warm-brown);
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    margin-top: auto;

    font-family: 'Lato', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;

    text-decoration: none;
    color: var(--bg-logo-soft-linen);

    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-ink);   
    color: var(--bg-logo-soft-linen);
}

.o-info-container {
    padding: 20px 20px;
    margin: 20px 0;
    width: 90%; 
    max-width: 650px;

    border: var(--accent-warm-brown) 2px solid;
    border-radius: 20px;
    background-color: var(--bg-logo-soft-linen);

    animation: fadeIn 2s ease forwards;
}

.o-info-container h4 {
    font-size: 1.3rem;
    font-family: 'Playfair Display', sans-serif;
    margin-bottom: 10px;
}

.o-info-container p {
    font-size: 1rem;
    color: var(--text-muted-stone);
    line-height: 2;
    padding-left: 10px;
}

/* ABOUT CONTENT */
.main-a-intro{
    background-color: var(white );
    padding: 50px 20px;
    text-align: center;
}

.main-a-grid{
    max-width: 90%;
    margin: 0 auto 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
    "story story"
    "mission vision";
    gap: 20px;
}

.main-a-story {
    grid-area: story;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    border: var(--bg-logo-soft-linen) 2px solid;
    border-radius: 20px;
    padding: 20px;
    background-color: var(--bg-page-parchment);
    color: var(--primary-ink);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-a-mission {
    grid-area: mission;
    display: flex;
    flex-direction: column;
    justify-content: center;

    border: var(--accent-warm-brown) 2px solid;
    border-radius: 20px;
    padding: 20px;
    background-color: var(--bg-logo-soft-linen);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-a-vision {
    grid-area: vision;
    display: flex;
    flex-direction: column;
    justify-content: center;

    border: var(--accent-warm-brown) 2px solid;
    border-radius: 20px;
    padding: 20px;
    background-color: var(--bg-logo-soft-linen);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-a-story:hover, .main-a-mission:hover, .main-a-vision:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    transform: scale(1.005);
}

.main-a-why{
    max-width: 90%;
    margin: 50px auto 30px;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;

    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 12px rgba(0,0,0,0.1);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-a-why:hover {
    box-shadow: 0 15px 20px rgba(0,0,0,0.2);
    transform: scale(1.01);
}

.main-a-why h2 {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 20px;
}

.a-why-item {
    text-align: center;
    padding: 20px;
}

.a-why-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.main-a-what {
    max-width: 90%;
    margin: 50px auto 30px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;

    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 12px rgba(0,0,0,0.1);
}

.a-what-item {
    border: var(--accent-warm-brown) 1px solid;
    border-radius: 20px;
    padding: 20px 25px;
    background-color: var(--bg-logo-soft-linen);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.a-what-item:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    transform: scale(1.005);
    cursor: default;
}

.a-what-item h3 {
    width: 40px;
    height: 40px;
    background-color: var(--accent-warm-brown);
    color: var(--bg-logo-soft-linen);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-top: 10px;
}

.what-item-info{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.star-rating {
    display: flex;
    flex-direction: row;
    gap: 5px;
    margin-top: 10px;
}

.about-svg {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
    filter: invert(39%) sepia(21%) saturate(1478%) hue-rotate(343deg) brightness(92%) contrast(85%);
}

.star-svg {
    width: 14px;
    height: 14px;  
    filter: invert(39%) sepia(21%) saturate(1478%) hue-rotate(343deg) brightness(92%) contrast(85%); 
}

.main-a-commitment {
    max-width: 90%;
    margin: 50px auto;

    border-radius: 20px;
    background: linear-gradient(to bottom right, var(--accent-warm-brown) 30%, var(--text-muted-stone) 70%);
    color: var(--bg-logo-soft-linen);
    text-align: center;
    padding: 20px 20px;
}

.a-commitment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    max-width: 80%;
    margin: 0 auto;
}


.review-form-section {
    max-width: 90%;
    margin: 40px auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.review-form-section h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}
.review-form-section p.sub {
    color: var(--text-muted-stone);
    margin-bottom: 24px;
}
.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.review-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.review-field.full { grid-column: 1 / -1; }
.review-field label { font-weight: 700; font-size: .95rem; }
.review-field input,
.review-field textarea,
.review-field select {
    padding: 10px 14px;
    border: 1px solid var(--accent-warm-brown);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
}
.review-field textarea { resize: vertical; }

/* Star picker */
.star-picker { display: flex; flex-direction: row-reverse; gap: 4px; justify-content: center; }
.star-picker input { display: none; }
.star-picker label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color .2s;
    font-weight: normal;
    border: none;
    padding: 0;
}
.star-picker input:checked ~ label,
.star-picker label:hover,
.star-picker label:hover ~ label { color: #f59e0b; }

.btn-review {
    grid-column: 1 / -1;
    background: var(--accent-warm-brown);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 12px 28px;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .3s;
    margin-top: 8px;
}
.btn-review:hover { background: var(--primary-ink); }

#review-alert {
    grid-column: 1 / -1;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: .95rem;
    display: none;
}

/* ── Dynamic reviews grid ── */
.reviews-section {
    max-width: 90%;
    margin: 0 auto 40px;
}
.reviews-section h2 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 2rem;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.review-card {
    background: var(--bg-logo-soft-linen);
    border: 1px solid var(--accent-warm-brown);
    border-radius: 20px;
    padding: 20px 25px;
    transition: transform .3s, box-shadow .3s;
}
.review-card:hover { transform: scale(1.005); box-shadow: 0 8px 16px rgba(0,0,0,.1); }
.review-card .stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 10px; }

.reviews-section .review-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
}

.review-card p { color: var(--primary-ink); line-height: 1.7; margin-bottom: 14px; }
.review-card .review-text-wrap { overflow: hidden; }
.review-card .review-text-wrap.collapsed {
    max-height: 80px;
    -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
}
.review-card .see-more-btn {
    background: none;
    border: none;
    color: var(--accent-warm-brown);
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    padding: 0;
    margin-bottom: 10px;
    display: none;
    font-family: 'Lato', sans-serif;
}
.review-card .see-more-btn:hover { text-decoration: underline; }
.review-card .reviewer { display: flex; align-items: center; gap: 10px; }
.review-card .avatar {
    width: 40px; height: 40px;
    background: var(--accent-warm-brown);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem;
}
.review-card .reviewer-info h4 { font-size: 1rem; margin: 0; }
.review-card .reviewer-info p  { font-size: .85rem; color: var(--text-muted-stone); margin: 0; }
.no-reviews { text-align: center; color: var(--text-muted-stone); padding: 30px 0; }

        

/* CONTACT */
.main-ct-intro {
    background-color: var(white );
    padding: 50px 20px;
    text-align: center;
}

.main-ct-body {
    max-width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.main-ct-info h2{
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.ct-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.ct-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ct-info-item .contact-svg{
   width: 24px;
   height: 24px;
   margin-top: 3px;

   filter: invert(39%) sepia(21%) saturate(1478%) hue-rotate(343deg) brightness(92%) contrast(85%);
}

.ct-info-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--primary-ink);
}

.ct-info-item p {
    font-size: 1rem;
    color: var(--text-muted-stone);
    line-height: 1.6;
}

.ct-visit-card {
    background-color: var(--bg-logo-soft-linen);
    border-radius: 12px;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    gap: .8rem  ;
}

.ct-visit-card p {
    font-size: 1rem;
    color: var(--text-muted-stone);
    line-height: 1.6;
}

.main-ct-form {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.main-ct-form h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: left    ;
}

.ct-form-body form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-fullname,
.contact-email,
.contact-subject,
.contact-message {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ct-form-body label span {
    color: var(--accent-warm-brown);
}

.ct-form-body input, .ct-form-body textarea {
    padding: 10px;
    border: 1px solid var(--accent-warm-brown);
    border-radius: 12px;
    font-size: 1rem;
}

.ct-form-body textarea {
    resize: none;
}

.ct-form-body .btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--accent-warm-brown);
    color: var(--bg-logo-soft-linen);
    border: none;
    border-radius: 30px;
    padding: 14px 28px;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 0.5rem;
    width: 100%;
}

.ct-form-body .btn-submit:hover {
    background-color: var(--primary-ink);
}

.ct-form-body .btn-submit .contact-svg {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    margin: 0;

}

/* Alert box for contact form feedback */
#contact-alert {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.95rem;
    margin-bottom: 18px;
    display: none;
    font-family: 'Lato', sans-serif;
}
#contact-alert.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}
#contact-alert.error {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fca5a5;
}
.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* THANK YOU */
.main-thank-you {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


footer {
    background-color: var(--primary-ink);
    color: var(--bg-logo-soft-linen);
    font-family: 'Lato', sans-serif;
    padding: 48px 60px 24px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(237,232,220,0.15);
}
.footer-brand .brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--bg-logo-soft-linen);
    margin-bottom: 4px;
}
.footer-brand .brand-name span { color: var(--accent-warm-brown); }
.footer-brand .tagline {
    font-size: 0.82rem;
    color: var(--text-muted-stone);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-brand .slogan {
    font-size: 0.95rem;
    color: var(--bg-logo-soft-linen);
    opacity: 0.75;
    line-height: 1.6;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}
.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--bg-logo-soft-linen);
    margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
    text-decoration: none;
    color: var(--text-muted-stone);
    font-size: 0.88rem;
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--bg-logo-soft-linen); }
.footer-col p { font-size: 0.88rem; color: var(--text-muted-stone); line-height: 1.7; }
.footer-col p strong {
    color: var(--bg-logo-soft-linen);
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted-stone); }
.footer-bottom p span { color: var(--accent-warm-brown); }

/* Responsive */
@media (max-width: 768px) {
    footer { padding: 36px 24px 20px; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Header slide in ── */
header {
    animation: slideDown 0.5s ease forwards;
}

/* ── Hero banner ── */
.hero-banner {
    animation: fadeIn 0.8s ease forwards;
}
.hero-banner .banner-description {
    animation: slideInLeft 0.7s ease 0.2s both;
}
.hero-banner .banner-buttons {
    animation: fadeUp 0.6s ease 0.45s both;
}
/* floating hero illustration effect */
.hero-banner h2 {
    text-shadow: 2px 4px 16px rgba(0,0,0,0.3);
}

/* ── Featured products stagger ── */
.featured-product {
    animation: fadeUp 0.6s ease forwards;
    animation-fill-mode: both;
}
.featured-product:nth-child(1) { animation-delay: 0.1s; }
.featured-product:nth-child(2) { animation-delay: 0.22s; }
.featured-product:nth-child(3) { animation-delay: 0.34s; }

/* lift on hover */
.featured-product {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.featured-product:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(139,94,60,0.15);
}

/* ── Why choose us items ── */
.main-reasons-item {
    animation: slideInLeft 0.6s ease forwards;
    animation-fill-mode: both;
}
.main-reasons-item:nth-child(1) { animation-delay: 0.1s; }
.main-reasons-item:nth-child(2) { animation-delay: 0.2s; }
.main-reasons-item:nth-child(3) { animation-delay: 0.3s; }
.main-reasons-item:nth-child(4) { animation-delay: 0.4s; }

/* check icon pulse on hover */
.main-reasons-item:hover .svg-icon {
    animation: pulse-ring 0.8s ease;
}

/* ── Get started section ── */
.main-get-started {
    animation: fadeIn 0.7s ease forwards;
}
.get-started-button button {
    animation: scaleIn 0.5s ease 0.3s both;
}

/* ── Catalog grid stagger ── */
.c-grid-item {
    animation: fadeUp 0.55s ease forwards;
    animation-fill-mode: both;
}
.c-grid-item:nth-child(1) { animation-delay: 0.05s; }
.c-grid-item:nth-child(2) { animation-delay: 0.12s; }
.c-grid-item:nth-child(3) { animation-delay: 0.19s; }
.c-grid-item:nth-child(4) { animation-delay: 0.26s; }
.c-grid-item:nth-child(5) { animation-delay: 0.33s; }
.c-grid-item:nth-child(6) { animation-delay: 0.4s; }

.c-grid-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.c-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

/* ── About page ── */
.main-a-intro { animation: fadeIn 0.6s ease forwards; }

.main-a-story  { animation: slideInLeft  0.65s ease 0.1s both; }
.main-a-mission{ animation: slideInLeft  0.65s ease 0.2s both; }
.main-a-vision { animation: slideInRight 0.65s ease 0.2s both; }

.a-why-item {
    animation: fadeUp 0.55s ease forwards;
    animation-fill-mode: both;
    transition: transform 0.3s ease;
}
.a-why-item:nth-child(2) { animation-delay: 0.1s; }
.a-why-item:nth-child(3) { animation-delay: 0.2s; }
.a-why-item:nth-child(4) { animation-delay: 0.3s; }
.a-why-item:hover { transform: translateY(-4px); }

/* ── About SVG float ── */
.about-svg {
    transition: transform 0.3s ease;
}
.a-why-item:hover .about-svg {
    animation: float 1.8s ease infinite;
}

/* commitment stat boxes */
.a-commitment-item {
    animation: scaleIn 0.5s ease forwards;
    animation-fill-mode: both;
    transition: transform 0.3s ease;
}
.a-commitment-item:nth-child(1) { animation-delay: 0.1s; }
.a-commitment-item:nth-child(2) { animation-delay: 0.2s; }
.a-commitment-item:nth-child(3) { animation-delay: 0.3s; }
.a-commitment-item:hover { transform: scale(1.06); }

/* testimonial cards */
.a-what-item {
    animation: fadeUp 0.55s ease forwards;
    animation-fill-mode: both;
}
.a-what-item:nth-child(1) { animation-delay: 0.1s; }
.a-what-item:nth-child(2) { animation-delay: 0.2s; }
.a-what-item:nth-child(3) { animation-delay: 0.3s; }

/* ── Contact ── */
.main-ct-intro { animation: fadeIn 0.6s ease forwards; }
.main-ct-info  { animation: slideInLeft  0.65s ease 0.1s both; }
.main-ct-form  { animation: slideInRight 0.65s ease 0.15s both; }

.ct-info-item {
    transition: transform 0.25s ease;
}
.ct-info-item:hover { transform: translateX(4px); }

/* ── Order page ── */
.main-o-intro { animation: fadeIn 0.6s ease forwards; }
.grid-order-form {
    animation: fadeUp 0.65s ease 0.15s both;
    transition: box-shadow 0.3s ease;
}
.grid-order-form:focus-within {
    box-shadow: 0 8px 28px rgba(139,94,60,0.14);
}

/* Nav hover handled above */

/* ── Footer fade ── */
footer { animation: fadeIn 0.8s ease forwards; }

/* ── Scroll-reveal utility (JS-powered) ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* DASHBOARD */

body { background: var(--bg-page-parchment); font-family: 'Lato', sans-serif; display: flex; flex-direction: column; min-height: 100vh; }
.dash-body { flex: 1; }
/* ══════════════════════════════════════════════════
    ADMIN TOPBAR  —  mirrors main-site nav style
══════════════════════════════════════════════════ */
.topbar {
    background: var(--bg-logo-soft-linen);
    padding: 1rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 2px solid var(--accent-warm-brown);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;                         
    box-sizing: border-box;              
    box-shadow: 0 2px 12px rgba(139,94,60,0.08);
    animation: slideDown 0.4s ease forwards;
}

.topbar {
    width: 100%;
    box-sizing: border-box;
}

.topbar-left { display: flex; align-items: center; gap: 14px; }
.topbar-left img { width: 100px; height: auto; }
.topbar-left .brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-ink);
}
.topbar-left .brand span { color: var(--accent-warm-brown); font-style: italic; }

/* Admin nav — same pill-button style as main site */
.admin-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.admin-nav ul li button {
    background-color: transparent;
    border: none;
    border-radius: 20px;
    padding: 0;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}
.admin-nav ul li button a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--primary-ink);
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}
.admin-nav ul li button:hover { transform: scale(1.07); }
.admin-nav ul li button:hover a {
    background-color: var(--primary-ink);
    color: var(--bg-logo-soft-linen);
}
.admin-nav ul li button.active a {
    background-color: var(--accent-warm-brown);
    color: var(--bg-logo-soft-linen);
}
.admin-nav ul li button.danger a { color: #ef4444; }
.admin-nav ul li button.danger:hover a {
    background-color: #ef4444;
    color: #fff;
}
.badge-red {
    position: absolute;
    top: 2px; right: 2px;
    background: #ef4444;
    color: #fff;
    border-radius: 10px;
    padding: 1px 6px;
    font-size: 0.68rem;
    font-weight: 700;
    pointer-events: none;
}

/* Hamburger — identical to main site */
.admin-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.admin-hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-ink);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.admin-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.admin-hamburger.open span:nth-child(2) { opacity: 0; }
.admin-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Responsive topbar ── */
@media (max-width: 595px) {
    .topbar { justify-content: space-between; flex-wrap: wrap; padding: 1rem; }
    .topbar-left img { width: 70px; }
    .topbar-left .brand { font-size: 1rem; }
    .admin-hamburger { display: flex; }
    .admin-nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .admin-nav.open { max-height: 500px; }
    .admin-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 0;
    }
    .admin-nav ul li button a { padding: 10px 28px; }
    
    .demo-reel {
    padding: 30px 16px;
    }
    
    .demo-reel h2 {
        font-size: 1.3rem;
    }
}



/* ── Body ── */
.dash-body { max-width: 1240px; margin: 36px auto; padding: 0 24px; }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-ink);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--accent-warm-brown);
    opacity: 0.3;
}

/* ── Stat cards ── */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-bottom: 36px;
}
.stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px 16px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-top: 4px solid var(--accent-warm-brown);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: fadeUp 0.5s ease forwards;
    animation-fill-mode: both;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.stat-card.all        { border-top-color: #6b7280; }
.stat-card.pending    { border-top-color: #f59e0b; }
.stat-card.processing { border-top-color: #3b82f6; }
.stat-card.ready      { border-top-color: #8b5cf6; }
.stat-card.completed  { border-top-color: #10b981; }
.stat-card.cancelled  { border-top-color: #ef4444; }
.stat-card .num { font-size: 2.2rem; font-weight: 900; color: var(--primary-ink); }
.stat-card .lbl { font-size: 0.78rem; color: var(--text-muted-stone); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }

/* stagger cards */
.stat-card:nth-child(1) { animation-delay: 0.05s; }
.stat-card:nth-child(2) { animation-delay: 0.1s; }
.stat-card:nth-child(3) { animation-delay: 0.15s; }
.stat-card:nth-child(4) { animation-delay: 0.2s; }
.stat-card:nth-child(5) { animation-delay: 0.25s; }
.stat-card:nth-child(6) { animation-delay: 0.3s; }

/* ── Filter tabs ── */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.filter-tabs a {
    padding: 8px 18px;
    border-radius: 20px;
    border: 1.5px solid var(--accent-warm-brown);
    color: var(--accent-warm-brown);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.filter-tabs a:hover, .filter-tabs a.active {
    background: var(--accent-warm-brown);
    color: #fff;
    transform: translateY(-1px);
}

/* ── Table wrapper ── */
.table-wrapper {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    animation: fadeUp 0.6s ease forwards;
}

.orders-table { width: 100%; border-collapse: collapse; }
.orders-table thead { background: var(--accent-warm-brown); }
.orders-table th {
    color: #fff;
    padding: 14px 16px;
    text-align: left;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.orders-table td {
    padding: 13px 16px;
    border-bottom: 1px solid #f0ede8;
    font-size: 0.9rem;
    vertical-align: middle;
}
.orders-table tr:last-child td { border-bottom: none; }
.orders-table tbody tr {
    transition: background 0.2s;
    animation: fadeIn 0.4s ease forwards;
}
.orders-table tbody tr:hover td { background: #fdf8f3; }

/* ── Status badge ── */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.badge.pending    { background: #fef3c7; color: #92400e; }
.badge.processing { background: #dbeafe; color: #1e40af; }
.badge.ready      { background: #ede9fe; color: #5b21b6; }
.badge.completed  { background: #d1fae5; color: #065f46; }
.badge.cancelled  { background: #fee2e2; color: #991b1b; }

/* ── Status form ── */
.status-form { display: flex; gap: 6px; align-items: center; }
.status-form select {
    padding: 5px 10px;
    border: 1.5px solid var(--accent-warm-brown);
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    background: var(--bg-page-parchment);
    color: var(--primary-ink);
}
.status-form button {
    padding: 5px 13px;
    background: var(--accent-warm-brown);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.status-form button:hover { background: var(--primary-ink); transform: scale(1.03); }

/* ── Design link ── */
.design-link { color: var(--accent-warm-brown); text-decoration: none; font-size: 0.85rem; font-weight: 600; }
.design-link:hover { text-decoration: underline; }

/* ── Empty ── */
.empty { text-align: center; color: var(--text-muted-stone); padding: 60px 0; font-size: 1.1rem; }

/* ── Footer ── */
.admin-footer {
    background: var(--primary-ink);
    color: var(--bg-logo-soft-linen);
    text-align: center;
    padding: 18px;
    font-size: 0.85rem;
}

/* ── Animations ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .dash-body { padding: 0 16px; margin: 20px auto; }
    .stat-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .stat-card { padding: 16px 10px; }
    .stat-card .num { font-size: 1.6rem; }
    .stat-card .lbl { font-size: 0.72rem; }
    .section-title { font-size: 1.1rem; }
    .filter-tabs { gap: 8px; }
    .filter-tabs a { padding: 6px 12px; font-size: 0.82rem; }

    .table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .orders-table { min-width: 650px; }
    .orders-table th,
    .orders-table td { padding: 8px; font-size: 0.78rem; }

    .badge { font-size: 0.72rem; padding: 3px 8px; }
    .status-form select { font-size: 0.75rem; padding: 4px 6px; }
    .status-form button { font-size: 0.75rem; padding: 4px 8px; }
}

@media (max-width: 595px) {
    .dash-body { padding: 0 10px; }

    /* Stat cards — 2 columns */
    .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .stat-card { padding: 14px 8px; }
    .stat-card .num { font-size: 1.4rem; }
    .stat-card .lbl { font-size: 0.7rem; }

    /* Filter tabs — wrap naturally */
    .filter-tabs { gap: 6px; }
    .filter-tabs a { padding: 6px 12px; font-size: 0.78rem; }

    /* Table — card-style stacked rows; reset tablet overrides */
    .table-wrapper { overflow-x: visible; border-radius: 10px; }
    .orders-table { min-width: 0; width: 100%; }
    .orders-table thead { display: none; }
    .orders-table, .orders-table tbody,
    .orders-table tr, .orders-table td { display: block; width: 100%; }
    .orders-table tr {
        border-bottom: 2px solid var(--accent-warm-brown);
        padding: 12px 0;
        margin-bottom: 4px;
    }
    .orders-table tr:last-child { border-bottom: none; }
    .orders-table td {
        padding: 4px 14px;
        font-size: 0.85rem;
        border-bottom: none;
        text-align: left;
    }
    .orders-table td::before {
        content: attr(data-label);
        display: block;
        font-size: 0.68rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--text-muted-stone);
        margin-bottom: 2px;
    }

    /* Status form stacks nicely */
    .status-form { flex-wrap: wrap; gap: 6px; }
    .status-form select { flex: 1; min-width: 0; }
    .status-form button { width: 100%; }
}

/* LOGIN */
/* ── Page Layout ── */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--bg-page-parchment);
    font-family: 'Lato', sans-serif;
}

/* ── Branded Header ── */
.admin-header {
    background-color: var(--bg-logo-soft-linen);
    border-bottom: 2px solid var(--accent-warm-brown);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideDown 0.5s ease forwards;
}
.admin-header .logo-img img { width: 80px; height: auto; }
.admin-header .brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-ink);
}
.admin-header .brand-title span {
    color: var(--accent-warm-brown);
    font-style: italic;
}

/* ── Center card ── */
.login-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.login-card {
    background: #fff;
    border: 2px solid var(--accent-warm-brown);
    border-radius: 20px;
    padding: 48px 44px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 12px 32px rgba(139,94,60,0.12);
    animation: fadeUp 0.6s ease forwards;
}

.login-card .card-header {
    text-align: center;
    margin-bottom: 32px;
}
.login-card .card-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-ink);
    margin-bottom: 4px;
}
.login-card .card-header p {
    color: var(--text-muted-stone);
    font-size: 0.95rem;
}
.login-card .card-header .lock-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
    animation: pulse 2s infinite;
}

/* ── Fields ── */
.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}
.field label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-ink);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.field input {
    padding: 12px 16px;
    border: 1.5px solid #d6c9b8;
    border-radius: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--primary-ink);
    background: var(--bg-page-parchment);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.field input:focus {
    outline: none;
    border-color: var(--accent-warm-brown);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(139,94,60,0.12);
}

/* ── Login button ── */
.btn-login {
    width: 100%;
    padding: 14px;
    background: var(--accent-warm-brown);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    margin-top: 8px;
}
.btn-login:hover {
    background: var(--primary-ink);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(28,28,28,0.2);
}
.btn-login:active { transform: translateY(0); }

/* ── Error ── */
.error {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fca5a5;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    animation: shake 0.4s ease;
}

/* ── Footer ── */
.admin-footer {
    background-color: var(--primary-ink);
    color: var(--bg-logo-soft-linen);
    text-align: center;
    padding: 16px;
    font-size: 0.85rem;
}

/* ── Divider ── */
.divider {
    border: none;
    border-top: 1px solid #e8e0d4;
    margin: 24px 0;
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: var(--accent-warm-brown);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: color 0.2s;
}
.back-link:hover { color: var(--primary-ink); }

/* ── Animations ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-6px); }
    40%       { transform: translateX(6px); }
    60%       { transform: translateX(-4px); }
    80%       { transform: translateX(4px); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.08); }
}

/* MESSAGES */
/* ── Layout: full-height page with sticky footer ── */
html, body { height: 100%; margin: 0; padding: 0; }
body {
    background: var(--bg-page-parchment);
    font-family: 'Lato', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.page-content { flex: 1; }

/* ── Body ── */
.dash-body { max-width: 860px; margin: 36px auto; padding: 0 24px; }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-ink);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--accent-warm-brown);
    opacity: 0.3;
}

/* ── Message cards ── */
.msg-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-left: 4px solid var(--accent-warm-brown);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: fadeUp 0.5s ease forwards;
    animation-fill-mode: both;
}
.msg-card:nth-child(1) { animation-delay: 0.05s; }
.msg-card:nth-child(2) { animation-delay: 0.1s; }
.msg-card:nth-child(3) { animation-delay: 0.15s; }
.msg-card:nth-child(4) { animation-delay: 0.2s; }
.msg-card:nth-child(5) { animation-delay: 0.25s; }
.msg-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

.msg-card-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.msg-subject { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.15rem; color: var(--primary-ink); }
.msg-date { font-size: 0.8rem; color: var(--text-muted-stone); white-space: nowrap; }
.msg-from {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-logo-soft-linen);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}
.msg-from .avatar {
    width: 28px;
    height: 28px;
    background: var(--accent-warm-brown);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
}
.msg-from strong { color: var(--primary-ink); }
.msg-from .email { color: var(--text-muted-stone); }
.msg-body { line-height: 1.8; color: var(--primary-ink); border-top: 1px solid #f0ede8; padding-top: 12px; margin-top: 4px; }

/* ── See more / See less ── */
.msg-body-text { overflow: hidden; }
.msg-body-text.collapsed { max-height: 100px; -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%); mask-image: linear-gradient(to bottom, black 60%, transparent 100%); }
.see-more-btn {
    background: none;
    border: none;
    color: var(--accent-warm-brown);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 4px 0;
    margin-top: 4px;
    display: none;
    font-family: 'Lato', sans-serif;
}
.see-more-btn:hover { text-decoration: underline; }

/* ── Empty ── */
.empty {
    text-align: center;
    color: var(--text-muted-stone);
    padding: 80px 0;
    font-size: 1.1rem;
}
.empty .empty-icon { font-size: 3rem; margin-bottom: 12px; display: block; }

/* ── Footer ── */
.admin-footer {
    background: var(--primary-ink);
    color: var(--bg-logo-soft-linen);
    text-align: center;
    padding: 18px;
    font-size: 0.85rem;
}

/* ── Animations ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Media Queries ── */
@media (max-width: 768px) {
    
    
    
    .dash-body { padding: 0 14px; margin: 20px auto; }
    .section-title { font-size: 1.1rem; }
    .msg-card { padding: 16px; }
    .msg-subject { font-size: 1rem; }
    .msg-from { flex-wrap: wrap; }
    
}

@media (max-width: 480px) {
    
    
    .msg-card { padding: 12px; border-radius: 10px; }
    .msg-card-header { flex-direction: column; gap: 4px; }
    .msg-from .email { display: none; }
    .dash-body { padding: 0 10px; }
}
    /* ══════════════════════════════════════════════════
    ADMIN TOPBAR  —  mirrors main-site nav style
    ══════════════════════════════════════════════════ */
.topbar {
    background: var(--bg-logo-soft-linen);
    padding: 1rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 2px solid var(--accent-warm-brown);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(139,94,60,0.08);
    animation: slideDown 0.4s ease forwards;
}
.topbar-left { display: flex; align-items: center; gap: 14px; }
.topbar-left img { width: 100px; height: auto; }
.topbar-left .brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-ink);
}
.topbar-left .brand span { color: var(--accent-warm-brown); font-style: italic; }

/* Admin nav — same pill-button style as main site */
.admin-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.admin-nav ul li button {
    background-color: transparent;
    border: none;
    border-radius: 20px;
    padding: 0;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}
.admin-nav ul li button a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--primary-ink);
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}
.admin-nav ul li button:hover { transform: scale(1.07); }
.admin-nav ul li button:hover a {
    background-color: var(--primary-ink);
    color: var(--bg-logo-soft-linen);
}
.admin-nav ul li button.active a {
    background-color: var(--accent-warm-brown);
    color: var(--bg-logo-soft-linen);
}
.admin-nav ul li button.danger a { color: #ef4444; }
.admin-nav ul li button.danger:hover a {
    background-color: #ef4444;
    color: #fff;
}
.badge-red {
    position: absolute;
    top: 2px; right: 2px;
    background: #ef4444;
    color: #fff;
    border-radius: 10px;
    padding: 1px 6px;
    font-size: 0.68rem;
    font-weight: 700;
    pointer-events: none;
}

/* Hamburger — identical to main site */
.admin-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.admin-hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-ink);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.admin-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.admin-hamburger.open span:nth-child(2) { opacity: 0; }
.admin-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Responsive topbar ── */
@media (max-width: 595px) {
    .topbar { justify-content: space-between; flex-wrap: wrap; padding: 1rem; }
    .topbar-left img { width: 70px; }
    .topbar-left .brand { font-size: 1rem; }
    .admin-hamburger { display: flex; }
    .admin-nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .admin-nav.open { max-height: 500px; }
    .admin-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 0;
    }
    .admin-nav ul li button a { padding: 10px 28px; }
}

/* REVIEWS */
/* ── Layout: full-height with sticky footer ── */
html, body { height: 100%; margin: 0; padding: 0; }
body {
    background: var(--bg-page-parchment);
    font-family: 'Lato', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.page-content { flex: 1; }

/* ── Body ── */
.dash-body { max-width: 1100px; margin: 36px auto; padding: 0 24px; }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-ink);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--accent-warm-brown);
    opacity: 0.3;
}

/* ── Filter tabs ── */
.filter-tabs { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.filter-tabs a {
    padding: 8px 18px;
    border-radius: 20px;
    border: 1.5px solid var(--accent-warm-brown);
    color: var(--accent-warm-brown);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.filter-tabs a.active, .filter-tabs a:hover { background: var(--accent-warm-brown); color: #fff; transform: translateY(-1px); }

/* ── Review card ── */
.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: fadeUp 0.5s ease forwards;
    animation-fill-mode: both;
}
.review-card:nth-child(1) { animation-delay: 0.05s; }
.review-card:nth-child(2) { animation-delay: 0.1s; }
.review-card:nth-child(3) { animation-delay: 0.15s; }
.review-card:nth-child(4) { animation-delay: 0.2s; }
.review-card:nth-child(5) { animation-delay: 0.25s; }
.review-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

.avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-warm-brown);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(139,94,60,0.3);
}

.content { flex: 1; min-width: 0; }
.name-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 4px; }
.reviewer-name { font-weight: 700; font-size: 1.05rem; color: var(--primary-ink); }
.reviewer-occ { font-size: 0.85rem; color: var(--text-muted-stone); }

.status-pill {
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 0.76rem;
    font-weight: 700;
}
.status-pill.approved { background: #d1fae5; color: #065f46; }
.status-pill.pending  { background: #fef3c7; color: #92400e; }

.stars { color: #f59e0b; font-size: 1.1rem; margin: 6px 0; letter-spacing: 2px; }

/* ── See more for review text ── */
.review-text-wrap { overflow: hidden; }
.review-text-wrap.collapsed { max-height: 90px; -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%); mask-image: linear-gradient(to bottom, black 55%, transparent 100%); }
.review-text { line-height: 1.8; color: var(--primary-ink); margin: 8px 0; font-style: italic; }
.see-more-btn {
    background: none;
    border: none;
    color: var(--accent-warm-brown);
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    padding: 2px 0;
    margin-top: 2px;
    display: none;
    font-family: 'Lato', sans-serif;
}
.see-more-btn:hover { text-decoration: underline; }

.review-date { font-size: 0.8rem; color: #aaa; margin-bottom: 14px; }

/* ── Action buttons ── */
.actions { display: flex; gap: 8px; flex-wrap: wrap; }
.btn {
    padding: 7px 18px;
    border: none;
    border-radius: 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.btn:active { transform: translateY(0); }
.btn-approve { background: #10b981; color: #fff; }
.btn-approve:hover { background: #059669; }
.btn-reject  { background: #f59e0b; color: #fff; }
.btn-reject:hover  { background: #d97706; }
.btn-delete  { background: #ef4444; color: #fff; }
.btn-delete:hover  { background: #dc2626; }

/* ── Empty ── */
.empty { text-align: center; color: var(--text-muted-stone); padding: 80px 0; font-size: 1.1rem; }
.empty .empty-icon { font-size: 3rem; margin-bottom: 12px; display: block; }

/* ── Footer ── */
.admin-footer {
    background: var(--primary-ink);
    color: var(--bg-logo-soft-linen);
    text-align: center;
    padding: 18px;
    font-size: 0.85rem;
}

/* ── Animations ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Media Queries ── */
@media (max-width: 768px) {
    
    
    
    .dash-body { padding: 0 14px; margin: 20px auto; }
    .review-card { flex-direction: column; gap: 14px; padding: 18px; }
    .section-title { font-size: 1.1rem; }
    
    .filter-tabs { gap: 8px; }
    .filter-tabs a { padding: 6px 14px; font-size: 0.82rem; }
}

@media (max-width: 480px) {
    
    
    .dash-body { padding: 0 10px; }
    .review-card { padding: 14px; border-radius: 10px; }
    .name-row { gap: 6px; }
    .actions { gap: 6px; }
    .btn { padding: 6px 14px; font-size: 0.78rem; }
}
    /* ══════════════════════════════════════════════════
    ADMIN TOPBAR  —  mirrors main-site nav style
    ══════════════════════════════════════════════════ */
.topbar {
    background: var(--bg-logo-soft-linen);
    padding: 1rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 2px solid var(--accent-warm-brown);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(139,94,60,0.08);
    animation: slideDown 0.4s ease forwards;
}
.topbar-left { display: flex; align-items: center; gap: 14px; }
.topbar-left img { width: 100px; height: auto; }
.topbar-left .brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-ink);
}
.topbar-left .brand span { color: var(--accent-warm-brown); font-style: italic; }

/* Admin nav — same pill-button style as main site */
.admin-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.admin-nav ul li button {
    background-color: transparent;
    border: none;
    border-radius: 20px;
    padding: 0;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}
.admin-nav ul li button a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--primary-ink);
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}
.admin-nav ul li button:hover { transform: scale(1.07); }
.admin-nav ul li button:hover a {
    background-color: var(--primary-ink);
    color: var(--bg-logo-soft-linen);
}
.admin-nav ul li button.active a {
    background-color: var(--accent-warm-brown);
    color: var(--bg-logo-soft-linen);
}
.admin-nav ul li button.danger a { color: #ef4444; }
.admin-nav ul li button.danger:hover a {
    background-color: #ef4444;
    color: #fff;
}
.badge-red {
    position: absolute;
    top: 2px; right: 2px;
    background: #ef4444;
    color: #fff;
    border-radius: 10px;
    padding: 1px 6px;
    font-size: 0.68rem;
    font-weight: 700;
    pointer-events: none;
}

/* Hamburger — identical to main site */
.admin-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.admin-hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-ink);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.admin-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.admin-hamburger.open span:nth-child(2) { opacity: 0; }
.admin-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Responsive topbar ── */
@media (max-width: 595px) {
    .topbar { justify-content: space-between; flex-wrap: wrap; padding: 1rem; }
    .topbar-left img { width: 70px; }
    .topbar-left .brand { font-size: 1rem; }
    .admin-hamburger { display: flex; }
    .admin-nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .admin-nav.open { max-height: 500px; }
    .admin-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 0;
    }
    .admin-nav ul li button a { padding: 10px 28px; }
}


/* RESPONSIVE */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    /* HOME RESPONSIVE */
    .main-reasons-item {
        display: flex;
        padding-left: 0px;
        gap: 10px;
    }


    /* ORDER RESPONSIVE */
    .grid-order-form {
        min-width: unset;
        width: 100%;
        grid-template-columns: 1fr;
        grid-template-areas: 
            "f-name"
            "email"
            "phone"
            "product"
            "quantity"
            "details"
            "design"
            "submit";
    }

    .form-email {
        grid-area: email;
    }

    .form-phone {
        grid-area: phone;
    }

    .main-o-forms {
        padding: 0 1rem;
    }

    .main-c-grid {
        grid-template-columns: 1fr;
        max-width: 95%;
    }

    .featured-products-container {
        flex-direction: column;
        align-items: center;
    }

    .hero-banner h2 {
        font-size: 2rem;
    }

    .hero-banner p {
        font-size: 1.1rem;
    }

    .banner-buttons {
        flex-direction: column;
        align-items: center;
    }

    .main-c-customize {
        max-width: 95%;
    }

    .o-info-container {
        min-width: unset;
        width: 100%;
    }
    /* ABOUT RESPONSIVE */
    .main-a-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "story"
            "mission"
            "vision";
        max-width: 95%;
        margin: 20px auto 40px;
    }

    .main-a-story p, 
    .main-a-mission p, 
    .main-a-vision p{
        font-size: 0.9rem;
    }

    .main-a-why {
        grid-template-columns: 1fr;
        max-width: 95%;
        margin: 20px auto 40px;
    }

    .main-a-what {
        grid-template-columns: 1fr;
        max-width: 95%;
        margin: 20px auto 40px;
    }
    
    .a-commitment-grid {
        grid-template-columns: 1fr;
        max-width: 95%;
        margin: 20px auto 40px;
    }

    /* CONTACT RESPONSIVE */
    .main-ct-body {
        grid-template-columns: 1fr;
        max-width: 95%;
        margin: 20px auto 40px;
    }
}

@media (max-width: 595px) {
    .hero-banner h2 {
        font-size: 1.5rem;
    }

    .hero-banner p {
        font-size: 1rem;
    }

    .main-c-customize h2 {
        font-size: 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;

        transition: max-height 0.3s ease;
    }

    nav.open {
        max-height: 300px; 
    }

    header {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 0;
    }

    .main-why-choose h2 {
        font-size: 1.5rem;
    }

    .main-why-choose h3 {
        font-size: 1.2rem;
    }

    .main-why-choose p {
        font-size: 0.9rem;
    }

    footer {
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .topbar {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
        box-sizing: border-box;
        padding: 1rem;
    }

    .admin-nav ul {
        gap: 0.8rem;
        justify-content: center;
    }

    .admin-nav ul li button a {
        padding: 8px 14px;
        font-size: 0.9rem;
    }

    .topbar-left img {
        width: 80px;
    }

    .topbar-left .brand {
        font-size: 1.1rem;
    }
}



@media (max-width: 768px) {
    .review-grid { grid-template-columns: 1fr; }
    .review-form-section { padding: 24px 16px; }
    
    .demo-reel h2 {
    font-size: 1.5rem;
}
}

/* ── Keyframes ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-32px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(32px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
    0%   { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}
@keyframes pulse-ring {
    0%   { box-shadow: 0 0 0 0 rgba(139,94,60,0.25); }
    70%  { box-shadow: 0 0 0 12px rgba(139,94,60,0); }
    100% { box-shadow: 0 0 0 0 rgba(139,94,60,0); }
}
