/* ====================================
   GLOBAL STYLES
   ==================================== */
:root {
    --primary-color: #c5a059;
    --bg-color: #ffffff;
    --text-color: #4a4a4a;
    --footer-bg: #a85d5d;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================
   HEADER & LOGO
   ==================================== */
.header-bar {
    width: 100%;
    background: linear-gradient(to right, #a85d5d, #d48585, #a85d5d);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 2rem;
    flex-wrap: wrap;
}

.header-logo-wrapper {
    flex-shrink: 0;
}

.content {
    flex: 1;
    width: 100%;
}

.logo {
    max-width: 175px;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    border-radius: 50%;
}

.logo:hover {
    transform: scale(1.02);
}

/* SEARCH BAR */
.header-search-wrapper {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-search-input {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--text-color);
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.header-search-input:focus {
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-search-input::placeholder {
    color: #999;
}

.clear-search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    transition: all 0.2s ease;
    z-index: 2;
}

.clear-search-btn:hover {
    background: #e0e0e0;
    color: #333;
}

.header-search-btn {
    background: var(--primary-color);
    border: none;
    padding: 10px 16px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    color: white;
}

.header-search-btn:hover {
    background-color: #b08d4b;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.4);
}

/* MOBILE NAV TOGGLE */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    flex-direction: column;
    gap: 5px;
}

.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
        position: absolute;
        top: 25px;
        right: 15px;
    }
}

/* ====================================
   TYPOGRAPHY
   ==================================== */
.title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-top: -5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.message {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.5rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
    font-style: italic;
}

/* ====================================
   BUTTONS
   ==================================== */
.social-btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
    text-transform: uppercase;
    font-size: 0.9rem;
    margin: 0 10px;
}

.social-btn:hover {
    background-color: #b08d4b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
}

/* ====================================
   CONTACT FORM STYLES
   ==================================== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.captcha-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.captcha-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
}

.captcha-input {
    width: 80px !important;
}

.submit-btn {
    display: inline-block;
    padding: 14px 40px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
    text-transform: uppercase;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #b08d4b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
}

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.error-message {
    background-color: #fee;
    color: #c33;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-align: center;
    border: 1px solid #fcc;
}

.success-message {
    background-color: #efe;
    color: #3a3;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-align: center;
    border: 1px solid #cfc;
}


/* ====================================
   FOOTER STYLES
   ==================================== */
.footer {
    background-color: var(--footer-bg);
    color: white;
    margin-top: auto;
    padding: 0;
    width: 100%;
    flex-shrink: 0;
}

.footer-content {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--footer-bg);
    width: 100%;
}

.footer-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-col {
    grid-column: span 1;
}

.footer-newsletter h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-family: 'Montserrat', sans-serif;
}

.footer-newsletter p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.newsletter-form input {
    padding: 12px 18px;
    border: none;
    border-radius: 25px;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: var(--text-color);
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
}

.newsletter-form button:hover {
    background-color: #b08d4b;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* ====================================
   RESPONSIVE - PHONES (max-width: 768px)
   ==================================== */
@media (max-width: 768px) {
    .header-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 5px 1rem;
    }

    .header-logo-wrapper {
        display: flex;
        justify-content: center;
    }

    .logo {
        max-width: 130px;
        border-width: 8px;
    }

    .header-search-wrapper {
        width: 100%;
        min-width: unset;
    }

    .header-search-input {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .title {
        font-size: 2.2rem;
        margin-top: 0;
    }

    .message {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .social-btn {
        display: block;
        margin: 10px auto;
        max-width: 200px;
    }

    .contact-form {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .captcha-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .captcha-input {
        width: 100% !important;
    }

    .policy-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .policy-container h2 {
        font-size: 1.5rem;
    }

    .policy-container p,
    .policy-container ul {
        font-size: 0.95rem;
    }

    /* Footer Mobile */
    .footer-content {
        padding: 30px 20px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }


    .footer-col h3 {
        font-size: 13px;
    }

    .footer-col ul li a {
        font-size: 12px;
    }

    .footer-newsletter h3 {
        font-size: 13px;
    }

    .footer-newsletter p {
        font-size: 11px;
    }

    .newsletter-form input,
    .newsletter-form button {
        font-size: 12px;
    }

    .footer-social {
        gap: 10px;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        font-size: 11px;
    }
}

/* ====================================
   RESPONSIVE - TABLETS (769px - 1024px)
   ==================================== */
@media (min-width: 769px) and (max-width: 1024px) {
    .header-bar {
        padding: 15px 1.5rem;
        gap: 1.5rem;
    }

    .logo {
        max-width: 150px;
    }

    .header-search-wrapper {
        min-width: 200px;
    }

    .title {
        font-size: 3rem;
    }

    .message {
        font-size: 1.05rem;
    }

    .policy-container h2 {
        font-size: 1.6rem;
    }

    /* Footer Tablet */
    .footer-grid {
        flex-wrap: wrap;
        gap: 40px;
    }


    .footer-content {
        padding: 30px 20px;
    }
}

/* ====================================
   RESPONSIVE - LARGE SCREENS (1025px+)
   ==================================== */
@media (min-width: 1025px) {
    .header-bar {
        padding: 5px 2rem;
    }

    .logo {
        max-width: 175px;
    }
}

/* ====================================
   NAVIGATION SECTION ONLY
   ==================================== */

.nav-section {
    background: white;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 0;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.nav-item>a {
    display: block;
    padding: 16px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.nav-item>a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #d48585);
    transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-item>a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-item>a:hover::before,
.nav-item>a.active::before {
    left: 0;
}

.nav-item>a.active {
    color: var(--primary-color);
}

/* Add invisible hover bridge to submenu */
.nav-item::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
    z-index: 999;
}

/* SUBMENU */
.submenu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    list-style: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-top: 4px solid var(--primary-color);
    min-width: 220px;
    z-index: 1000;
    border-radius: 8px;
    overflow: hidden;
    animation: slideDown 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.nav-item:hover .submenu {
    display: block;
}

.submenu li {
    border-bottom: 1px solid rgba(197, 160, 89, 0.08);
    white-space: normal;
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu li a {
    display: block;
    padding: 14px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: capitalize;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    position: relative;
    padding-left: 20px;
}

.submenu li a::before {
    content: '◆';
    position: absolute;
    left: 8px;
    color: var(--primary-color);
    font-size: 0.6rem;
    opacity: 0;
    transition: all 0.2s;
}

.submenu li a:hover {
    background: linear-gradient(90deg, rgba(197, 160, 89, 0.08) 0%, transparent 100%);
    color: var(--primary-color);
    padding-left: 28px;
}

.submenu li a:hover::before,
.submenu li a.active::before {
    opacity: 1;
}

.submenu li a.active {
    color: var(--primary-color);
    padding-left: 28px;
    background: linear-gradient(90deg, rgba(197, 160, 89, 0.08) 0%, transparent 100%);
}

/* ====================================
   NAVIGATION RESPONSIVE
   ==================================== */

@media (max-width: 768px) {
    .nav-section {
        background: white;
        width: 100%;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        padding: 5px 0;
        max-width: 100%;
        background: white;
    }

    .nav-menu.active {
        display: flex;
        border-top: 2px solid var(--primary-color);
        animation: fadeInDown 0.4s ease forwards;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-item {
        min-width: auto;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #f8f8f8;
        position: relative;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-item>a {
        padding: 18px 25px;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.95rem;
        text-align: left;
        color: #333;
        display: flex;
        justify-content: space-between;
        align-items: center;
        letter-spacing: 0.5px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-transform: uppercase;
    }

    .nav-item>a.active {
        color: var(--primary-color);
        background-color: #fdfaf3;
        padding-left: 30px;
        border-left: 4px solid var(--primary-color);
    }

    /* Chevron indicator for submenus */
    .nav-item.has-submenu>a::after {
        content: '\203A';
        /* Chevron icon > */
        font-size: 1.6rem;
        color: var(--primary-color);
        transition: transform 0.3s ease;
        margin-left: 15px;
        /* Spacing from text */
        line-height: 1;
        display: inline-block;
    }

    .nav-item.active.has-submenu>a::after {
        transform: rotate(90deg);
    }

    .submenu {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        background-color: #fafafa;
        border-radius: 0;
        border-top: none;
        animation: slideInLeft 0.3s ease forwards;
        transform: none;
        width: 100%;
        padding: 5px 0 15px 0;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-10px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-item.active .submenu {
        display: block;
    }

    .submenu li {
        border-bottom: none;
    }

    .submenu li a {
        padding: 12px 25px 12px 45px;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.9rem;
        color: #666;
        background: transparent;
        text-transform: capitalize;
        letter-spacing: 0.5px;
        font-weight: 500;
    }

    .submenu li a::before {
        display: none;
    }

    .submenu li a:hover,
    .submenu li a.active {
        color: var(--primary-color);
        background: transparent;
        padding-left: 55px;
    }

    .only-mobile {
        display: block !important;
    }

    .nav-social-follow {
        padding: 40px 30px;
        text-align: center;
        background: #fdfaf3;
        margin-top: 20px;
    }

    .nav-social-follow p {
        font-family: 'Playfair Display', serif;
        font-size: 1.1rem;
        color: var(--primary-color);
        margin-bottom: 20px;
        font-style: italic;
    }

    .mobile-social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .mobile-social-icons a {
        width: 45px;
        height: 45px;
        background: white;
        color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border: 1px solid #eee;
    }

    .mobile-social-icons a:active {
        transform: scale(0.9);
        background: var(--primary-color);
        color: white;
    }
}

/* ====================================
   HERO SLIDER STYLES
   ==================================== */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 10px auto 10px auto;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider {
    display: none;
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
}

.slider.active {
    display: block;
}

.slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-item {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slider-item.active {
    display: block;
}

/* .slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.slider-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center top;
}

.slider-content {
    position: absolute;
    top: auto;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    max-width: 800px;
    text-align: center;
    width: 100%;
}

.slider-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.slider-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.btn-slider {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-slider:hover {
    background-color: #b08d4b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(197, 160, 89, 0.8);
    color: white;
    border: none;
    padding: 15px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
    border-radius: 4px;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: rgba(197, 160, 89, 1);
}

.slider-dots-container {
    text-align: center;
    margin-bottom: 20px;
}

.slider-dots {
    display: inline-flex;
    gap: 12px;
    justify-content: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e0e0e0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--primary-color);
}

/* ====================================
   SLIDER RESPONSIVE
   ==================================== */
@media (max-width: 768px) {
    .slider-container {
        margin: 10px auto;
        border-radius: 0;
    }

    .slider {
        display: block !important;
        padding-bottom: 80% !important;
        /* Compact height for mobile */
    }



    .dot {
        width: 10px;
        height: 10px;
    }

    .slider-content {
        left: 5%;
        right: 5%;
        text-align: center;
        max-width: 100%;
        top: auto;
        bottom: 20px;
        transform: none;
    }

    .slider-content h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .slider-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn-slider {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .slider {
        display: block !important;
        padding-bottom: 50% !important;
    }

    .slider-container {
        margin: 20px auto;
    }
}

@media (min-width: 1025px) {
    .slider {
        display: block !important;
        padding-bottom: 40% !important;
    }
}

/* ====================================
   FEATURED COLLECTIONS SECTION
   ==================================== */
.featured-section {
    padding: 20px 20px;
    background-color: #fff;
    margin: 10px auto;
    border-radius: 8px;
    max-width: 1200px;
}

.featured-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-tile {
    background: linear-gradient(135deg, #a85d5d 0%, #d48585 100%);
    color: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 180px;
    text-decoration: none;
}

.category-tile:nth-child(2) {
    background: linear-gradient(135deg, #c5a059 0%, #d4b896 100%);
}

.category-tile:nth-child(3) {
    background: linear-gradient(135deg, #8b7355 0%, #a88967 100%);
}

.category-tile:nth-child(4) {
    background: linear-gradient(135deg, #a85d5d 0%, #d48585 100%);
}

.category-tile:nth-child(5) {
    background: linear-gradient(135deg, #c5a059 0%, #d4b896 100%);
}

.category-tile:nth-child(6) {
    background: linear-gradient(135deg, #8b7355 0%, #a88967 100%);
}

.category-tile:nth-child(7) {
    background: linear-gradient(135deg, #a85d5d 0%, #d48585 100%);
}

.category-tile:nth-child(8) {
    background: linear-gradient(135deg, #c5a059 0%, #d4b896 100%);
}

.category-tile:nth-child(9) {
    background: linear-gradient(135deg, #8b7355 0%, #a88967 100%);
}

.category-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.category-tile i {
    font-size: 40px;
    margin-bottom: 15px;
}

.category-tile h3 {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: white;
}

/* ====================================
   CATEGORY PAGE STYLES
   ==================================== */
.breadcrumb {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
    color: #666;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #b08d4b;
    text-decoration: underline;
}

.category-header {
    background: linear-gradient(135deg, #a85d5d 0%, #d48585 100%);
    color: white;
    padding: 40px 20px;
    margin: 20px auto;
    border-radius: 8px;
    max-width: 1200px;
}

.category-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.category-header p {
    font-size: 16px;
    opacity: 0.9;
    font-family: 'Montserrat', sans-serif;
}

.category-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 0 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.category-filter-btn {
    padding: 10px 20px;
    background-color: #fff;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.category-filter-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.category-filter-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: auto;
    /* Push to the right on desktop */
}

.pag-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #eee;
    color: #555;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.pag-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.3);
}

.pag-btn:hover:not(:disabled) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pag-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .pagination-container {
        margin-left: 0;
        width: 100%;
        justify-content: center;
        margin-top: 5px;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }

    .pag-btn {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
}

/* Products Grid */
.products-section {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #a85d5d 0%, #d48585 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #a85d5d;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-badge.new {
    background-color: var(--primary-color);
}

.product-badge.bestseller {
    background-color: #8b7355;
}

.product-badge.sale {
    background-color: #d32f2f;
}

.product-image.alt1 {
    background: linear-gradient(135deg, #c5a059 0%, #d4b896 100%);
}

.product-image.alt2 {
    background: linear-gradient(135deg, #8b7355 0%, #a88967 100%);
}

.product-image.alt3 {
    background: linear-gradient(135deg, #a85d5d 0%, #d48585 100%);
}

.product-image.alt4 {
    background: linear-gradient(135deg, #c5a059 0%, #d4b896 100%);
}

.product-image i {
    font-size: 60px;
    color: white;
    opacity: 0.8;
}

.product-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    min-height: 40px;
    font-family: 'Montserrat', sans-serif;
}

.product-description {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    flex: 0 0 auto;
    font-family: 'Montserrat', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Category Card Sizes */
.card-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
    align-items: center;
}

.card-sizes-label {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.card-size-chip {
    font-size: 0.75rem;
    padding: 3px 8px;
    border: 1px solid #d4b896;
    /* Subtle gold border */
    background: #fff;
    color: #8b7355;
    /* Muted gold/brown color */
    border-radius: 4px;
    min-width: 34px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-size-chip:hover {
    background: #fdf8f0;
    border-color: var(--primary-color);
}

.card-size-chip.sold-out {
    opacity: 0.5;
    background: #f9f9f9;
    color: #aaa;
    border-color: #eee;
    cursor: not-allowed;
    position: relative;
}

.card-size-chip.sold-out::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #aaa;
    transform: translateY(-50%) rotate(-45deg);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
}

.product-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
}

.product-btn:hover {
    background-color: #b08d4b;
}


/* ====================================
   BREADCRUMBS
   ==================================== */
.breadcrumb {
    max-width: 1200px;
    margin: 20px auto;
    padding: 12px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #888;
    background: #fafafa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 4px solid var(--primary-color);
}

.breadcrumb a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb .separator {
    color: #ccc;
    font-size: 0.75rem;
}

.breadcrumb .current {
    color: var(--primary-color);
    font-weight: 600;
}

/* ====================================
   FEATURED & CATEGORY RESPONSIVE
   ==================================== */
@media (max-width: 768px) {
    .featured-section {
        padding: 20px 15px;
        margin: 15px auto;
    }

    .featured-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .category-tile {
        padding: 30px 20px;
        min-height: 150px;
    }

    .category-tile i {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .category-tile h3 {
        font-size: 15px;
    }

    .breadcrumb {
        padding: 15px;
        font-size: 12px;
    }

    .category-header {
        margin: 15px auto;
        padding: 30px 20px;
    }

    .category-header h1 {
        font-size: 24px;
    }

    .category-header p {
        font-size: 14px;
    }

    .category-nav {
        padding: 0 15px;
        gap: 10px;
    }

    .category-filter-btn {
        padding: 8px 15px;
        font-size: 13px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-image {
        height: 180px;
    }

    .product-image i {
        font-size: 40px;
    }

    .product-name {
        font-size: 14px;
        min-height: 35px;
    }

    .product-description {
        font-size: 12px;
    }

    .product-price {
        font-size: 18px;
    }

    .product-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .featured-section {
        padding: 30px 20px;
        margin: 20px auto;
    }

    .featured-title {
        font-size: 26px;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .category-tile {
        padding: 35px;
        min-height: 160px;
    }

    .category-tile i {
        font-size: 36px;
    }

    .category-tile h3 {
        font-size: 17px;
    }

    .category-header h1 {
        font-size: 28px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .product-image {
        height: 220px;
    }
}

@media (min-width: 1025px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ====================================
   PRODUCT DETAIL PAGE
   ==================================== */
.product-detail-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.product-detail-media {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-main-media {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
    padding: 15px;
}

.main-media-view {
    flex: 1;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    min-height: 450px;
    /* Reduced slightly */
}

.media-wrapper {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.media-wrapper.active {
    display: flex;
}

.media-wrapper img,
.media-wrapper video {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    max-height: 80vh;
    /* Prevents vertical videos from taking too much vertical space */
}

/* Unified Thumbnails */
.product-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    padding: 5px;
    max-height: 80vh;
    scrollbar-width: thin;
}

.product-thumbnails::-webkit-scrollbar {
    width: 4px;
}

.product-thumbnails::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.thumb-item {
    flex-shrink: 0;
}

.thumb-nav {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: block;
}

.thumb-nav:hover {
    opacity: 0.8;
}

.thumb-nav.active {
    border-color: var(--primary-color);
}

/* Responsiveness for Side Thumbnails */
@media (max-width: 992px) {
    .product-main-media {
        flex-direction: column-reverse;
        padding: 10px;
    }

    .product-thumbnails {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        max-height: none;
        width: 100%;
        padding: 10px 0;
    }

    .thumb-nav {
        width: 70px;
        height: 90px;
    }
}

.video-placeholder {
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.video-placeholder i {
    font-size: 20px;
    color: var(--primary-color);
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Tighter gap */
    position: sticky;
    top: 40px;
}

.product-detail-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin: 0;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

/* Size Selector */
.size-selector-container {
    margin: 5px 0 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    /* Fallback for many sizes */
}

.size-selector-container p {
    font-weight: 600;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0;
    /* Removed margin */
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.size-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-chip {
    padding: 6px 14px;
    /* More compact */
    border: 1px solid #d4b896;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    min-width: 45px;
    text-align: center;
    color: #8b7355;
    font-weight: 500;
}

.size-chip:hover {
    border-color: var(--primary-color);
    background: #fdf8f0;
    color: var(--primary-color);
}

.size-chip.sold-out {
    opacity: 0.5;
    background: #f9f9f9;
    color: #aaa;
    border-color: #eee;
    cursor: not-allowed;
    position: relative;
}

.size-chip.sold-out::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: #aaa;
    transform: translateY(-50%) rotate(-45deg);
}

.size-chip.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.3);
}

.regular-price {
    color: var(--primary-color);
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1.4rem;
}

.discount-badge {
    background-color: #a85d5d;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
}

.product-detail-info .product-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    /* Increased margin for better spacing */
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
    text-align: justify;
    text-justify: inter-word;
}

/* Accordion Styles for Specs */
.spec-accordion {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.spec-accordion-header {
    background: #fdfdfd;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.spec-accordion-header:hover {
    background: #f9f9f9;
}

.spec-accordion-header h3 {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-accordion-header i {
    font-size: 0.8rem;
    color: #999;
    transition: transform 0.3s ease;
}

.spec-accordion.active .spec-accordion-header i {
    transform: rotate(180deg);
}

.spec-accordion-content {
    display: none;
    padding: 15px 20px;
    background: white;
    border-top: 1px solid #eee;
}

.spec-accordion.active .spec-accordion-content {
    display: block;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #f9f9f9;
    font-size: 0.9rem;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    color: #888;
    flex-shrink: 0;
    min-width: 100px;
}

.spec-value {
    color: #333;
    font-weight: 500;
    text-align: right;
    flex-grow: 1;
    word-break: break-word;
}

.spec-value.in-stock {
    color: #2e7d32;
    font-weight: bold;
}

.contact-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-btn:hover {
    background-color: #b08d4b;
}

.shipping-promo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

.shipping-promo i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.related-products-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.related-products-section h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

@media (max-width: 768px) {
    .product-detail-container {
        grid-template-columns: 1fr;
    }

    .spec-row {
        flex-direction: row;
        gap: 15px;
        align-items: flex-start;
        padding: 12px 0;
    }

    .spec-label {
        min-width: 90px;
        flex-shrink: 0;
    }

    .spec-value {
        text-align: right;
        flex-grow: 1;
        word-break: break-word;
        font-size: 0.85rem;
    }
}

.admin-wrapper {
    grid-template-columns: 1fr;
}

/* ====================================
   ADMIN PANEL STYLES
   ==================================== */

/* Admin Layout */
.admin-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    margin-top: 20px;
    text-align: left;
}

.admin-sidebar {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid #eee;
    height: fit-content;
}

.admin-nav-link {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
    font-family: 'Montserrat', sans-serif;
}

.admin-nav-link:hover {
    background: #f0f0f0;
}

.admin-nav-link.active {
    background: #333;
    color: white;
}

.admin-content-area {
    background: white;
}

/* Admin Tables */
.admin-content-area table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.admin-content-area th,
.admin-content-area td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    text-align: left;
}

.admin-content-area th {
    background: #f8f8f8;
    font-weight: 500;
}

/* Admin Buttons & Action Links */
.btn {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.3s ease;
}

.btn-primary {
    background: #333;
    color: white;
}

.btn-primary:hover {
    background: #555;
}

.btn-danger {
    background: #ffebee;
    color: #c62828;
}

.btn-danger:hover {
    background: #ffcdd2;
}

.btn-success {
    background: #e8f5e9;
    color: #2e7d32;
}

.btn-success:hover {
    background: #c8e6c9;
}

.btn-edit {
    background: #f5f5f5;
    color: #333;
}

.btn-edit:hover {
    background: #e0e0e0;
}

/* Admin Forms */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 200px;
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 0.9rem;
}

/* ====================================
   PRIVACY POLICY REDESIGN
   ==================================== */
.policy-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.policy-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: start;
}

/* Sidebar Navigation */
.policy-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: #fafafa;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.sidebar-card h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    display: inline-block;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-card ul li {
    margin-bottom: 12px;
}

.sidebar-card ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: block;
}

.sidebar-card ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Main Policy Content */
.policy-card {
    background: white;
    padding: 10px 0;
}

.policy-card h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #333;
    margin-top: 0;
    margin-bottom: 30px;
    position: relative;
}

.policy-card h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.last-updated {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.policy-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.policy-section {
    padding: 35px 0;
    border-bottom: 1px solid #f0f0f0;
    scroll-margin-top: 100px;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.policy-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.policy-section ul {
    list-style: none;
    padding: 0;
}

.policy-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.policy-section ul li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.policy-contact-box {
    background: #fdfaf3;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid var(--primary-color);
}

.policy-contact-box p {
    margin-bottom: 10px !important;
}

.policy-contact-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 992px) {
    .policy-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .policy-sidebar {
        position: static;
        order: 2;
    }

    .policy-content {
        order: 1;
    }

    .policy-card h1 {
        font-size: 2.2rem;
    }
}

/* ====================================
   CONTACT PAGE REDESIGN
   ==================================== */
.contact-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.contact-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    padding: 40px;
    background: #fafafa;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.contact-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.4rem;
    color: var(--primary-color);
    background: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-item h3 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.contact-item a,
.contact-item p {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    margin: 0;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-social {
    margin-top: 40px;
}

.contact-social h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
}

.contact-social .social-links {
    display: flex;
    gap: 15px;
}

.contact-social .social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-social .social-links a:hover {
    background: #b08d4b;
    transform: translateY(-3px);
}

/* Contact Form Section */
.contact-form-card {
    background: white;
    padding: 40px;
}

.contact-form-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.captcha-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.captcha-input {
    width: 80px !important;
    text-align: center;
    padding: 8px !important;
}

.success-message {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 5px solid #2e7d32;
    font-weight: 500;
}

.error-message {
    background: #ffebee;
    color: #c62828;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 5px solid #c62828;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .contact-form-card .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
}

/* Admin Helpers */
.thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    background: #eee;
}

.badge-archived {
    background: #eee;
    color: #666;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.status-active {
    color: #2e7d32;
    font-weight: 500;
    font-size: 0.85rem;
}

/* Login Page Styles */
.login-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    /* Centered vertically */
    background-color: #f4f4f4;
}

.login-box {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-box h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.login-box .btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    font-size: 1rem;
    padding: 12px;
}

.login-box .btn:hover {
    background: #b08d4b;
}

.error {
    color: #d32f2f;
    background: #ffebee;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* ====================================
   OUR STORY PAGE STYLES
   ==================================== */
.about-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.about-container {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 60px;
    align-items: start;
}

.about-image-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-image-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-card:hover img {
    transform: scale(1.05);
}

.about-text-card {
    padding: 0 0 20px 0;
}

.about-text-card h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #333;
    margin-top: 0;
    margin-bottom: 30px;
    position: relative;
}

.about-text-card h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.about-story-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.about-signature {
    margin-top: 40px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-style: italic;
}

.sig-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 5px;
    font-style: normal;
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-section {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-text-card h1 {
        font-size: 2.8rem;
    }
}

/* Sold Badge Styles */
.product-badge.sold,
.product-badge.sold-out {
    background: #d32f2f;
    /* Red */
    color: white;
    font-size: 0.8rem;
    padding: 5px 15px;
    position: absolute;
    top: 15px;
    left: -30px;
    transform: rotate(-45deg);
    width: 120px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Ensure container allows overflow hide for ribbon */
.product-image {
    position: relative;
    overflow: hidden;
}

/* Utility class to hide elements visually but keep them available for screen readers and SEO */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}