/* ============================================
   Imagify Prints — Global Color Theme
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --color-deep-walnut: #2c1a0e;
    --color-warm-amber: #d97b2e;
    --color-cream-canvas: #fdf6ec;
    --color-linen-beige: #e8d5b0;

    /* Derived shades */
    --color-deep-walnut-hover: #1a0f08; /* darker walnut for hover */
    --color-warm-amber-hover: #b8621e; /* darker amber for hover  */
    --color-linen-beige-hover: #d9c49a; /* slightly deeper beige   */
}

/* ============================================
     BACKGROUNDS
     ============================================ */

/* Main page / section background — Cream Canvas */

.bg-cream,
.section-cream {
    background-color: var(--color-cream-canvas);
    color: var(--color-deep-walnut);
}

/* Alternate section background — Linen Beige */
.bg-linen,
.section-linen {
    background-color: var(--color-linen-beige);
    color: var(--color-deep-walnut);
}

/* ============================================
     TYPOGRAPHY
     ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-deep-walnut);
}

a {
    color: var(--color-warm-amber);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-warm-amber-hover);
}

/* ============================================
     BUTTONS
     ============================================ */

/* Primary Button — Warm Amber */
.btn-primary,
button.btn-primary {
    background-color: var(--color-warm-amber);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.15s ease,
        box-shadow 0.2s ease;
}

.btn-primary:hover,
button.btn-primary:hover {
    background-color: var(--color-warm-amber-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(217, 123, 46, 0.35);
}

.btn-primary:active,
button.btn-primary:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Secondary Button — Deep Walnut outline */
.btn-secondary,
button.btn-secondary {
    background-color: transparent;
    color: var(--color-deep-walnut);
    border: 2px solid var(--color-deep-walnut);
    border-radius: 6px;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.15s ease;
}

.btn-secondary:hover,
button.btn-secondary:hover {
    background-color: var(--color-deep-walnut);
    color: var(--color-cream-canvas);
    transform: translateY(-2px);
}

.btn-secondary:active,
button.btn-secondary:active {
    transform: translateY(0);
}

/* Ghost Button — Linen Beige (light sections) */
.btn-ghost,
button.btn-ghost {
    background-color: var(--color-deep-walnut);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    padding: 8px 19px;
    font-size: 13px;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.15s ease;
}

.btn-ghost:hover,
button.btn-ghost:hover {
    background-color: var(--color-warm-amber-hover);
    color: white;
    transform: translateY(-2px);
}

.btn-ghost:active,
button.btn-ghost:active {
    transform: translateY(0);
}

/* ============================================
     CARDS
     ============================================ */

.card {
    background-color: var(--color-cream-canvas);
    border: 1px solid var(--color-linen-beige);
    border-radius: 10px;
    padding: 20px 24px;
    transition:
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.card:hover {
    box-shadow: 0 8px 24px rgba(44, 26, 14, 0.12);
    transform: translateY(-3px);
}

.card-dark {
    background-color: var(--color-deep-walnut);
    color: var(--color-cream-canvas);
    border: none;
    border-radius: 10px;
    padding: 20px 24px;
}

/* ============================================
     INPUTS & FORMS
     ============================================ */

input[type="text"],
input[type="email"],
input[type="search"],
select,
textarea {
    background-color: #fff;
    color: var(--color-deep-walnut);
    border: 1.5px solid var(--color-linen-beige);
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
select:focus,
textarea:focus {
    border-color: var(--color-warm-amber);
    box-shadow: 0 0 0 3px rgba(217, 123, 46, 0.15);
}

/* ============================================
     UTILITY CLASSES
     ============================================ */

.text-walnut {
    color: var(--color-deep-walnut);
}
.text-amber {
    color: var(--color-warm-amber);
}
.text-cream {
    color: var(--color-cream-canvas);
}
.text-beige {
    color: var(--color-linen-beige);
}

.bg-walnut {
    background-color: var(--color-deep-walnut);
}
.bg-amber {
    background-color: var(--color-warm-amber);
}
.bg-cream {
    background-color: var(--color-cream-canvas);
}
.bg-linen {
    background-color: var(--color-linen-beige);
}

/* /////////////////////////////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////////////////////////////// */

.desktop-cart-icon {
    width: 41px;
}
/* Header Top Bar */
.header__top {
    background: #000000;
    padding: 4px 0;
}

.header__top__marquee marquee {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Header Middle - Logo */
.header__middle {
    /* padding: 14px 0; */
    background: #ffffff;
    border-bottom: 1px solid #e1e1e1;
}

/* Header Bottom - Navigation */
.header__bottom {
    background: #ffffff;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header__menu {
    padding: 15px 0;
}

.header__menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__menu ul li {
    display: inline-block;
    margin-right: 60px;
    position: relative;
}

.header__menu ul li:last-child {
    margin-right: 0;
}

.header__menu ul li a {
    text-decoration: none;
    color: #111111;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    padding: 2px 0;
    display: block;
}

.header__menu ul li.active a,
.header__menu ul li:hover a {
    color: #e53637;
}

.header__menu ul li.active a:after,
.header__menu ul li:hover a:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e53637;
    transform: scaleX(1);
}

.header__menu ul li a:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e53637;
    transform: scaleX(0);
    transition: all 0.3s;
}

/* Right Side Actions */
.header__nav__option {
    padding: 0px 0px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.header__nav__option a {
    text-decoration: none;
    color: #111111;
    font-size: 14px;
    font-weight: 600;
    /* display: flex; */
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.header__nav__option a:hover {
    color: #e53637;
}

.header__nav__option a img {
    width: 25px;
}

/* .loginicon {
    width: 24px;
}
.carticon {
    width: 20px;
} */

/* Cart Icon */
.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #e53637;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-price {
    color: #e53637;
    font-weight: 700;
    font-size: 15px;
    margin-left: 20px;
}

/* Mobile Menu Toggle */
.canvas__open {
    display: none;
}

/* //////////////// HEADER STICKY DO START HERE ///////////////////// */

/* Base header */
.sticky_header {
    width: 100%;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* Sticky state */
.sticky_header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Prevent layout jump */
.header-placeholder {
    width: 100%;
    display: none;
}

.header-placeholder.active {
    display: block;
}

/* //////////////// HEADER STICKY DO END HERE ///////////////////// */

/* Responsive Design */
@media (max-width: 991px) {
    .header__menu {
        display: none;
    }

    .canvas__open {
        display: block;
        position: absolute;
        right: 15px;
        top: 15px;
        cursor: pointer;
        font-size: 24px;
        color: #111111;
        z-index: 999;
    }

    .header__nav__option {
        justify-content: center;
        gap: 10px;
    }

    .header__nav__option a {
        font-size: 12px;
    }

    .header__logo img {
        max-width: 140px;
    }
}

@media (max-width: 767px) {
    .header__top__marquee marquee {
        font-size: 12px;
    }

    .header__middle {
        padding: 15px 0;
    }

    .header__logo img {
        max-width: 120px;
    }

    .header__bottom {
        padding: 0 10px;
    }

    .col-6 {
        width: 50%;
    }

    .header__nav__option {
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px 0;
    }

    .header__nav__option a {
        font-size: 11px;
    }

    .cart-price {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .loginicon {
        width: 24px;
    }
    .carticon {
        margin-left: -2px;
        width: 30px;
    }
    .closemenuicon {
        float: inline-end;
        text-align: end;
        background: black;
        color: white;
        font-size: 14px;
        padding: 4px 10px;
        border-radius: 69%;
    }

    .header__nav__option {
        flex-direction: column;
        align-items: flex-end;
        gap: 5px;
    }

    .header__nav__option a {
        font-size: 10px;
    }

    .header__logo img {
        max-width: 100px;
    }
}

@media (max-width: 991px) {
    .header__middle {
        display: none;
    }

    .header__bottom {
        padding: 10px 0;
    }

    .header__bottom .desktop-header-row {
        display: none;
    }

    .mobile-header-row {
        display: grid;
        grid-template-columns: 1.5fr auto 0.5fr;
        align-items: center;
        width: 100%;
    }

    .mobile-logo {
        justify-self: start;
    }

    .mobile-logo img {
        max-width: 170px;
        height: auto;
        display: block;
    }

    .mobile-cart {
        justify-self: center;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .mobile-cart .cart-icon {
        position: relative;
        display: inline-flex;
        align-items: center;
    }

    .mobile-cart img {
        width: 18px;
        height: 20px;
    }

    .mobile-cart .cart-count {
        top: -7px;
        right: -10px;
    }

    .mobile-cart .cart-price {
        font-size: 13px;
        margin-left: 5px;
    }

    .canvas__open {
        display: flex;
        position: static;
        justify-self: end;
        width: 38px;
        height: 38px;
        border: 1px solid #111;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: #111;
        cursor: pointer;
        z-index: 999;
    }

    .header__nav__option {
        display: none;
    }

    .header__menu {
        display: none;
    }
}

@media (min-width: 992px) {
    .mobile-header-row {
        display: none;
    }
}

/* /////////////////////////////  header icon start here ////////////////////////// */
/* Menu Icon Styles */
.header__menu ul li a i {
    margin-right: 6px;
    font-size: 1em;
    transition: all 0.3s ease;
    color: #3d3d3d;
}

.header__menu ul li a:hover i,
.header__menu ul li.active a i {
    color: #f26922;
    transform: scale(1.2);
}

/* Optional: Icon Animation on Hover */
.header__menu ul li a:hover i {
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header__menu ul li a i {
        margin-right: 10px;
        font-size: 1rem;
        width: 20px;
        text-align: center;
    }
}

/* ///////////  header code end here  /////////////////// */

/* ///////////  footer code start here  /////////////////// */

/* ================================
   FOOTER START
================================ */

.footer {
    background: #ffecec;
    padding: 60px 0 30px;
}

/* Logo */
.footer__logo-wrapper {
    margin-bottom: 2rem;
}

.footer__logo-img {
    width: auto;
    max-width: 180px;
}

.footer__tagline {
    color: #000;
    font-size: 15px;
    line-height: 1.6;
    max-width: 600px;
    margin: auto;
}

/* ===================================
   FOOTER NAV
=================================== */

.footer__nav-wrapper {
    margin-top: 25px;
}

.footer__nav.custom-footer-mobile-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 10px;

    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__nav.custom-footer-mobile-nav li {
    width: auto;
    margin: 0;
}

.footer__nav.custom-footer-mobile-nav li a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    padding: 6px 10px;
    transition: 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.footer__nav.custom-footer-mobile-nav li a:hover {
    color: #f26922;
}

.footer__nav.custom-footer-mobile-nav li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: #f26922;
    transition: 0.3s;
}

.footer__nav.custom-footer-mobile-nav li a:hover::after {
    width: 60%;
}

/* Separator */
.footer__separator {
    width: 80%;
    max-width: 800px;
    height: 1px;
    margin: 35px auto;

    background: linear-gradient(90deg, transparent, #f26922, transparent);
}

/* ===================================
   SOCIAL
=================================== */

.footer__social-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.footer__social-title {
    color: #000;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer__social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #000;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-decoration: none;

    transition: 0.3s ease;
}

.footer__social-icon:hover {
    background: #f26922;
    transform: translateY(-4px);
}

/* Copyright */

.footer__copyright p {
    color: #000;
    font-size: 14px;
    margin: 0;
}

.footer__heart-icon {
    color: #f26922;
}

/* ===================================
   MOBILE
=================================== */

@media (max-width: 576px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer__logo-img {
        max-width: 140px;
    }

    .footer__tagline {
        font-size: 13px;
        padding: 0 15px;
    }

    .footer__nav.custom-footer-mobile-nav {
        justify-content: center;

        padding: 0 10px;
    }

    .footer__nav.custom-footer-mobile-nav li a {
        font-size: 13px;
        padding: 5px 8px;
    }

    .footer__social-icon {
        width: 38px;
        height: 38px;
    }

    .footer__copyright p {
        font-size: 12px;
        line-height: 1.7;
        padding: 0 10px;
    }
}

/* ================================
   FOOTER END
================================ */

/* ///////////  footer code end here  /////////////////// */

.about__item ul {
    padding-left: 18px;
}

.about__item li {
    margin-bottom: 10px;
    list-style: none;
    line-height: 1.6;
}

/* ///////////  SEARCH BAR START HERE //////////////////////// */
.header__search {
    display: inline-block;
    margin-right: 20px;
    vertical-align: middle;
}

.search-box {
    position: relative;
    width: 350px; /* fixed width */
    height: 35px;
    border-radius: 50px;
    transition: 0.3s;
}

.search-box input {
    width: 100%;
    height: 100%;
    border: 2px solid #393838;
    padding: 0 40px 0 15px;
    border-radius: 50px;
    background: transparent;
    font-size: 14px;
}

.search-box input:focus {
    background: #fff;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    pointer-events: none; /* icon clickable na ho */
}
/* ///////////  SEARCH BAR END HERE //////////////////////// */
