
/* ===================================================
   1. GLOBAL & LAYOUT
   =================================================== */

body {
    overflow-x: hidden;
}

.form-control {
    padding: 1.2rem .75rem !important;
}

/* ===================================================
   FONT CLASSES FOR RESPONSIVE
   =================================================== */

/* Base sizes (Mobile First) */
.cv-f-1 { font-size: 2rem !important;    line-height: 1.2 !important; }
.cv-f-2 { font-size: 1.75rem !important; line-height: 1.3 !important; }
.cv-f-3 { font-size: 1.5rem !important;  line-height: 1.3 !important; }
.cv-f-4 { font-size: 1.25rem !important; line-height: 1.4 !important; }
.cv-f-5 { font-size: 1.125rem !important;line-height: 1.5 !important; }
.cv-f-6 { font-size: 1rem !important;    line-height: 1.5 !important; }

.cv-f-small  { font-size: 0.875rem !important; }
.cv-f-tiny   { font-size: 0.75rem !important; }
.cv-f-large  { font-size: 1.25rem !important; }
.cv-f-xlarge { font-size: 1.5rem !important; }

@media (min-width: 768px) {
    .cv-f-1, .cv-f-md-1 { font-size: 3rem !important; }
    .cv-f-2, .cv-f-md-2 { font-size: 2.5rem !important; }
    .cv-f-3, .cv-f-md-3 { font-size: 2rem !important; }
    .cv-f-4, .cv-f-md-4 { font-size: 1.5rem !important; }
    .cv-f-5, .cv-f-md-5 { font-size: 1.25rem !important; }
    .cv-f-6, .cv-f-md-6 { font-size: 1.125rem !important; }
}

@media (min-width: 992px) {
    .cv-f-1,  .cv-f-lg-1 { font-size: 3.5rem !important; }
    .cv-f-2,  .cv-f-lg-2 { font-size: 2.75rem !important; }
    .cv-f-3,  .cv-f-lg-3 { font-size: 2.25rem !important; }
    .cv-f-4,  .cv-f-lg-4 { font-size: 1.75rem !important; }
    .cv-f-5,  .cv-f-lg-5 { font-size: 1.375rem !important; }
    .cv-f-6,  .cv-f-lg-6 { font-size: 1.125rem !important; }
}

@media (min-width: 1200px) {
    .cv-f-1,  .cv-f-xl-1 { font-size: 4rem !important; }
    .cv-f-2,  .cv-f-xl-2 { font-size: 3rem !important; }
    .cv-f-3,  .cv-f-xl-3 { font-size: 2.5rem !important; }
    .cv-f-4,  .cv-f-xl-4 { font-size: 2rem !important; }
    .cv-f-5,  .cv-f-xl-5 { font-size: 1.5rem !important; }
    .cv-f-6,  .cv-f-xl-6 { font-size: 1.25rem !important; }
}

@media (min-width: 1400px) {
    .cv-f-1 { font-size: 4.5rem !important; }
    .cv-f-2 { font-size: 3.5rem !important; }
    .cv-f-3 { font-size: 2.75rem !important; }
}

/* ===================================================
   2. NAVIGATION & HEADER
   =================================================== */

.top-announcement {
    height: 40px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar {
    background-color: #f9f1ea;
    height: 80px;
    line-height: 80px;
    padding: 0;
    z-index: 9999;
    border-bottom: 1px solid #eee;
}

.navbar.dropdown-active-white {
    background-color: #ffffff !important;
}

.navbar-brand {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.navbar .navbar-brand img {
    height: 40px;
}

.navbar-nav {
    gap: 20px;
}

.navbar-nav .nav-link {
    position: relative;
    padding: 0 !important;
    text-decoration: none !important;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #322e2a;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #a0732d;
}

.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active {
    outline: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000 !important;
    transition: width 0.3s ease-out;
    z-index: 9999;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after,
.nav-item.active .nav-link::after,
.nav-link.active::after,
.nav-item.dropdown.show .nav-link::after {
    width: 100% !important;
}

.navbar-nav .dropdown-toggle::after {
    display: none !important;
}

.navbar-nav .nav-link .fa-chevron-down {
    display: inline-block !important;
    margin-left: 5px;
}

#festiveDropdown::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 50%;
    bottom: 0 !important;
    transform: translateX(-50%);
    background-color: var(--color-black) !important;
    transition: width 0.3s ease-out;
    z-index: 1111;
}

#festiveDropdown:hover::after,
#festiveDropdown:focus::after,
#festiveDropdown.show::after,
li.dropdown.show #festiveDropdown::after {
    width: 100% !important;
}

/* ===================================================
   3. DROPDOWN MENUS
   =================================================== */

.nav-item.dropdown:hover > .dropdown-menu,
.nav-item.dropdown.show > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s,
                max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
    pointer-events: none;
    background-color: #ffffff !important;
    border-top: 1px solid #eee;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-item.dropdown:hover > .mega-menu,
.nav-item.dropdown.show > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 600px;
    padding: 3rem 4rem !important;
    pointer-events: auto;
}

.nav-item.dropdown:hover .dropdown-menu:not(.mega-menu) {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    padding: .5rem 0;
}

.mega-menu .menu-title {
    font-weight: 600;
    margin: 0 !important;
    padding: 0 0 0.8rem 0 !important;
    line-height: 1.2 !important;
    font-size: 1rem;
    color: #322e2a;
    display: block;
}

.mega-menu .dropdown-item,
.mega-menu-list .dropdown-item {
    padding: 0.35rem 0 !important;
    font-size: 1rem;
    color: #828282;
    background: transparent !important;
    transition: all 0.2s ease;
    text-align: left;
    line-height: 1.2 !important;
    white-space: nowrap;
    font-weight: 400 !important;
}

.mega-menu .dropdown-item:hover,
.mega-menu-list .dropdown-item:hover {
    color: #b58a60;
    background-color: #f7f7f7 !important;
    transform: translateX(3px);
    padding-left: 15px !important;
}

.menu-banner img {
    transition: transform 0.3s ease;
}

.menu-banner:hover img {
    transform: scale(1.03);
}

.banner-button a {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #000;
}

.banner-button a:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-new-collection {
    padding: 10px 20px;
    transition: all 0.2s ease-in-out;
}

.menu-group {
    background-color: transparent !important;
}

.simple-dropdown-menu {
    min-width: 220px;
    padding: 12px 0;
    border-radius: 0 !important;
}

.simple-dropdown-menu .dropdown-item {
    padding: 5px 25px;
    color: #2c2c2c;
    font-size: 16px;
    transition: all 0.2s ease;
}

.simple-dropdown-menu .dropdown-item:hover {
    background: #f8f9fa;
    padding-left: 24px;
    color: #2c2c2c;
}

.navbar-nav .nav-item.dropdown .dropdown-menu {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.navbar-nav .nav-item.dropdown.show .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.user-dropdown {
    padding: 20px !important;
    cursor: pointer;
}

.user-dropdown-wrapper .dropdown-menu {
    background-color: #ffffff !important;
    margin-top: 8px !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.user-menu {
    background-color: #ffffff !important;
}

.user-menu .dropdown-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    transition: background-color 0.2s ease !important;
    background-color: transparent !important;
    line-height: 1.5 !important;
    padding: 10px 20px !important;
}

.user-menu .dropdown-item i {
    width: 16px !important;
    min-width: 16px !important;
    font-size: 15px !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
}

.user-menu .dropdown-item:hover {
    background-color: #f7f7f7 !important;
    padding-left: 20px !important;
}

/* ===================================================
   4. HEADER ICONS
   =================================================== */

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icons a {
    font-size: 18px;
    color: #222;
    transition: color 0.2s ease;
}

.header-icons a:hover {
    color: #a0732d;
}

header .navbar-right a .count,
.wishlist-count,
#wishlist-count,
.wishlist-badge,
.header-wishlist-count,
[data-wishlist-count] {
    font-size: 8px !important;
    font-weight: 400;
    color: var(--count-number-color, #fff);
    position: absolute !important;
    left: 15px;
    top: -5px;
    width: 16px;
    height: 16px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    background-color: var(--count-bg-color, #322e2a);
    border-radius: 100% !important;
}

#mainCart.cart-count,
.cart-badge {
    font-size: 8px !important;
    font-weight: 400;
    color: var(--count-number-color, #fff);
    position: absolute !important;
    left: 15px;
    top: -5px;
    width: 16px;
    height: 16px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    background-color: var(--count-bg-color, #322e2a);
    border-radius: 100% !important;
}

.icon-sm {
    width: 16px;
    height: 16px;
}

/* ===================================================
   5. HERO SLIDER / BANNER
   =================================================== */

.hero-slider {
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-swiper,
.banner-swiper {
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.swiper-wrapper {
    height: 100%;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hongo-hero-slide {
    height: 800px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: block;
}

.hongo-hero-slide .hero-inner,
.hongo-hero-slide::before {
    background: none !important;
}

.banner-swiper .swiper-slide,
.hero-swiper .swiper-slide {
    opacity: 1;
    transition: transform 1s ease-in-out;
}

.hero-inner,
.banner-content {
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 5;
    padding: 0 20px;
    width: 90%;
    max-width: 900px;
}

.hero-inner .small-heading,
.banner-content .subtitle {
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 500;
}



@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.banner-content .subtitle,
.banner-content .title,
.banner-content .buttons,
.banner-content .hero-buttons,
.hero-inner .small-heading,
.hero-inner h1,
.hero-inner .buttons,
.hero-inner .hero-buttons,
.hongo-hero-slide .animate-subtitle,
.hongo-hero-slide .animate-title,
.hongo-hero-slide .animate-buttons {
    opacity: 0;
}

.swiper-slide-active .banner-content .subtitle,
.swiper-slide-active .hero-inner .small-heading,
.swiper-slide-active .animate-subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.swiper-slide-active .banner-content .title,
.swiper-slide-active .hero-inner h1,
.swiper-slide-active .animate-title {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.swiper-slide-active .banner-content .buttons,
.swiper-slide-active .banner-content .hero-buttons,
.swiper-slide-active .hero-inner .buttons,
.swiper-slide-active .hero-inner .hero-buttons,
.swiper-slide-active .animate-buttons {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.banner-content .buttons a,
.hero-inner .buttons a {
    display: inline-block;
    transition: all 0.3s ease;
}

.banner-content .buttons a:hover,
.hero-inner .buttons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.next-arrow-btn-banner,
.prev-arrow-btn-banner,
.next-arrow-btn-products,
.prev-arrow-btn-products,
.swiper-button-next,
.swiper-button-prev {
    transition: all 0.3s ease;
    cursor: pointer;
}

.next-arrow-btn-banner:hover,
.prev-arrow-btn-banner:hover,
.next-arrow-btn-products:hover,
.prev-arrow-btn-products:hover,
.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
}

.swiper-pagination-bullet {
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    transform: scale(1.2);
}

.hero-swiper .swiper-pagination,
.testimonial-swiper-faded .swiper-pagination {
    position: relative;
    margin-top: 20px;
    z-index: 10;
}

.hero-swiper .swiper-pagination {
    bottom: -10px;
}

.banner-swiper img,
.hero-swiper img,
.product-swiper img {
    transition: opacity 0.3s ease;
}

/* ===================================================
   6. FEATURE STRIPS
   =================================================== */

.hongo-features {
    border-top: 1px solid #e9dfd4;
    border-bottom: 1px solid #e9dfd4;
    color: #6f5b48;
}

.hongo-features .feature-icon i {
    font-size: 38px;
    color: #b68b60;
    transition: all 0.3s ease;
}

.hongo-features-title {
    font-weight: 600;
    color: #322e2a;
    font-size: 1.2rem;
}

.hongo-features .feature-text {
    color: #6f5b48;
    font-size: 0.9rem;
}

.hongo-features .feature-icon:hover i {
    color: #000;
    transform: scale(1.1);
}

.hongo-feature-item {
    position: relative;
    padding-left: 1.5rem;
}

.hongo-feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background-color: #e0e0e0;
}

.hongo-feature-icon i {
    font-size: 3rem;
    color: #c09674;
}

.hongo-feature-title {
    font-weight: 600 !important;
    font-size: 1.125rem !important;
    color: #322e2a;
}

.featurebox .feature-box-title {
    display: block;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 0;
}

/* ===================================================
   8. PRODUCT SWIPER & CARDS
   =================================================== */

.product-flag {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 6px 8px;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    z-index: 15;
    border-radius: 2px;
    white-space: nowrap;
    display: inline-block;
    text-align: center;
    line-height: 1;
    transform: none !important;
    transition: none !important;
    animation: flagFadeIn 0.3s ease-in-out;
}

.product-card:hover .product-flag {
    transform: none !important;
    top: 10px !important;
    right: 10px !important;
}

.product-flag.new,
.product-flag.new_arrival  { background-color: #28a745; }
.product-flag.featured     { background-color: #16a34a; }
.product-flag.trending     { background-color: #f59e0b; }
.product-flag.best_seller,
.product-flag.bestseller   { background-color: #ff9800; }
.product-flag.limited_edition,
.product-flag.limited      { background-color: #dc3545; }
.product-flag.exclusive    { background-color: #6f42c1; }
.product-flag.hot          { background-color: #ff6b6b; }
.product-flag.sale         { background-color: #e74c3c; }

@keyframes flagFadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
    .product-flag {
        font-size: 10px;
        padding: 4px 8px;
        top: 8px;
        right: 8px;
    }
}

.product-swiper {
    overflow: hidden;
    position: relative;
    transition: opacity 0.3s ease-in-out;
}

.product-swiper.loading-fade {
    opacity: 0.5;
    pointer-events: none;
}

.product-swiper .swiper-slide {
    transition: transform 0.3s ease, opacity 0.3s ease;
    height: auto;
}

.product-item {
    cursor: pointer !important;
    overflow: visible !important;
}

.product-card {
    overflow: visible !important;
    position: relative;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: none !important;
}

.product-image-wrap {
    position: relative;
    overflow: hidden;
    background: #f1f1f1;
}

.product-image-wrap img {
    aspect-ratio: 4/5 !important;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1);
    display: block;
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.08);
}

.sale-badge,
.sale_price,
.product-badge,
.product-image-wrap .badge {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    padding: 4px 10px !important;
    font-weight: 700 !important;
    background-color: #fff !important;
    color: #000 !important;
    border-radius: 0 !important;
    box-shadow: 1px 1px 0 #000;
    border: 1px solid #000;
    font-size: 11px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10 !important;
    pointer-events: none;
    transform: none !important;
    transition: none !important;
}

.product-card:hover .sale-badge,
.product-card:hover .sale_price,
.product-card:hover .product-badge,
.product-card:hover .product-image-wrap .badge {
    transform: none !important;
    top: 12px !important;
    left: 12px !important;
}

.product-hover-options {
    position: absolute;
    top: 25%;
    right: 15px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-card:hover .product-hover-options {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%);
}

.product-hover-options .icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: white;
    border: none;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, color 0.3s ease,
                transform 0.2s ease, box-shadow 0.3s ease;
    transform: translateX(60px);
    opacity: 0;
}

.product-card:hover .product-hover-options .icon-btn:nth-child(1) {
    transform: translateX(0);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s;
}

.product-card:hover .product-hover-options .icon-btn:nth-child(2) {
    transform: translateX(0);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

.product-card:hover .product-hover-options .icon-btn:nth-child(3) {
    transform: translateX(0);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}

.product-card:hover .product-hover-options .icon-btn:hover {
    background: #000;
    color: #fff;
    transform: translateX(0) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.product-hover-options .icon-btn i {
    font-size: 16px;
    transition: color 0.3s ease;
}

.wishlist-btn.active,
.product-hover-options .icon-btn.wishlist-btn.active {
    background: #ff4757 !important;
    color: white !important;
}

.wishlist-btn.active i,
.product-hover-options .icon-btn.wishlist-btn.active i {
    color: white !important;
}

.product-card:hover .wishlist-btn.active:hover {
    background: #ff3838 !important;
    transform: translateX(0) scale(1.1);
}

.product-card:not(:hover) .product-hover-options .icon-btn:nth-child(1) {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

.product-card:not(:hover) .product-hover-options .icon-btn:nth-child(2) {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s;
}

.product-card:not(:hover) .product-hover-options .icon-btn:nth-child(3) {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
}

.add-to-cart-btn {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    border: none;
    border-radius: 0;
    background-color: #322e2a;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.add-to-cart-btn .btn-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.add-to-cart-btn .btn-text {
    position: relative;
    height: 1.5em;
    overflow: hidden;
}

.add-to-cart-btn .text-default,
.add-to-cart-btn .text-hover {
    display: block;
    transition: transform 0.3s ease;
}

.add-to-cart-btn .text-hover {
    position: absolute;
    left: 0;
    top: 100%;
}

.add-to-cart-btn:hover .text-default,
.add-to-cart-btn:hover .text-hover {
    transform: translateY(-100%);
}

.add-to-cart-btn.in-cart .text-default,
.add-to-cart-btn.in-cart .text-hover {
    transform: none !important;
}

.product-card:hover .add-to-cart-btn {
    opacity: 1;
    transform: translateY(0);
}

.product-details-content,
.product-card:hover .product-details-content {
    transform: none !important;
    padding: 0 45px !important;  /* ADD THIS */
}

.product-title,
.product-card:hover .product-title {
    font-size: 18px !important;
    color: #322e2a !important;
    transform: none !important;
}

.product-price,
.product-card:hover .product-price {
    font-size: 0.938rem !important;
    margin-bottom: 8px !important;
    color: #828282 !important;
    transform: none !important;
    font-weight: 400 !important;
}

.star-rating i {
    width: 14px;
    height: 14px;
    color: #828282;
    margin-right: 2px;
}

.star-rating .bi-star-fill,
.star-rating .bi-star-half { color: #322e2a; }
.star-rating .bi-star       { color: #828282; }

.star-rating .review-count {
    margin-left: 4px;
    font-size: 12px;
    color: #666;
}

.product-card:hover .star-rating {
    transform: none !important;
}

.swiper-slide {
    overflow: visible !important;
}

.product-actions {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.product-actions button {
    padding: 6px 12px;
    border: none;
    border-radius: 5px;
    background: #ff6f61;
    color: #fff;
    cursor: pointer;
    font-size: 0.85rem;
}

/* ===================================================
   9. COLLECTIONS GRID
   =================================================== */

.collection-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: opacity 0.3s, transform 0.3s ease;
}

.collection-card:hover {
    opacity: 0.85;
    color: #333;
    transform: translateY(-5px);
}

.collection-card .card-image-wrapper {
    background-color: #f7f3ed;
    overflow: hidden;
    margin-bottom: 0;
    width: 100%;
}

.collection-card .card-image-wrapper img,
.collection-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.collection-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.card-title {
    font-size: 16px !important;
    font-weight: 500;
    text-transform: capitalize;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.collection-link-card {
    min-height: 350px;
    text-decoration: none;
    background-color: #f1ffec;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out;
}

.collection-link-card:hover {
    transform: scale(1.02);
}

.collection-image {
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-link-card:hover .collection-image {
    transform: scale(1.05);
}

.collection-overlay {
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: background-color 0.3s ease;
}

.collection-link-card:hover .collection-overlay {
    background-color: rgba(0, 0, 0, 0.45);
}

.collection-overlay h3 {
    font-size: 1.8rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.collection-overlay span {
    font-weight: 500;
}

.collection-link-card .collection-overlay > * {
    z-index: 10;
}

/* ===================================================
   10. BANNERS & PROMO SECTIONS
   =================================================== */

.main-banner {
    background-size: cover;
    background-position: center;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
}

.hongo-banner-section {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    background-color: #f0e6da;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hongo-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hongo-banner-content h3 {
    font-size: 3.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.hongo-banner-cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

/* ===================================================
   11. PROMO BLOCKS
   =================================================== */

.hongo-full-feature-section .feature-title {
    font-size: 3rem;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.feature-image-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.ceramic-badge {
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid #b59275;
    transform: rotate(-15deg);
    text-align: center;
    line-height: 1.1;
}

.ceramic-badge span {
    font-size: 1.25rem;
    font-weight: 700;
    color: #b59275;
}

.feature-text-block {
    padding-top: 0;
}

.feature-text-block h4 {
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 15px;
}

.feature-text-block p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.designers-choice-section {
    padding: 6rem 0;
    background-color: #ffffff;
    text-align: center;
}

.designers-choice-section .section-subtitle {
    font-size: 1.5rem !important;
    color: #777;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.designers-choice-section .section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

.designers-choice-section .product-card-placeholder {
    background-color: #f1f1f1;
    height: 400px;
    border-radius: 5px;
    position: relative;
}

.special-discount-section {
    padding: 5rem 0;
    background-color: #e3dcd4;
    text-align: center;
}

.special-discount-section .discount-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.special-discount-section .discount-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

.discount-form-group {
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.discount-form-group input {
    border: none;
    padding: 10px 15px;
    flex-grow: 1;
}

.discount-form-group button {
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

/* ===================================================
   12. COUNTDOWN TIMER
   =================================================== */

.countdown {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    padding: 3px 0;
    line-height: 1.2;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 60px;
}

.countdown-heading {
    font-size: 50px !important;
    line-height: 60px !important;
    margin-bottom: 10px;
    color: #555;
}

.countdown-number {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #333;
    line-height: 1;
    display: block;
}

.countdown-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    text-transform: uppercase;
    margin-top: 5px;
    display: block;
}

/* ===================================================
   13. GALLERY
   =================================================== */

.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    height: 100%;
}

.gallery-image {
    object-fit: cover;
    height: 100%;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    border: 2px solid white;
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* ===================================================
   14. TESTIMONIALS
   =================================================== */

.hongo-testimonial-section {
    padding: 6rem 0;
    background-color: #f8f8f8;
    text-align: center;
}

.hongo-testimonial-section .quote-icon {
    font-size: 3rem;
    color: #b59275;
    margin-bottom: 15px;
}

.hongo-testimonial-section blockquote {
    max-width: 700px;
    margin: 0 auto 20px auto;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: #333;
    border: none;
    padding: 0;
}

.hongo-testimonial-section .testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hongo-testimonial-section .testimonial-source {
    font-size: 0.9rem;
    color: #777;
}

/* ===================================================
   15. BLOG / ARTICLES
   =================================================== */

.latest-articles-section {
    padding: 6rem 0;
    background-color: #ffffff;
    text-align: center;
}

.latest-articles-section .section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4rem;
}

.latest-article .article-card,
.article-card {
    text-align: left;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.article-image-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.article-image-link img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.article-image-link:hover img {
    transform: scale(1.08);
}

.article-card img {
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

.article-card .article-date {
    font-size: 0.75rem !important;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.article-card .article-heading {
    font-size: 1.06rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    padding-right: 12px;
    line-height: 1.4;
}

.article-card .article-heading:hover,
.article-card .read-more-link:hover {
    color: #c09674;
}

.article-card .read-more-link,
.read-more-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* ===================================================
   QUICK VIEW MODAL
   =================================================== */

#quickViewModal .modal-dialog {
    max-width: 1000px;
    margin: 1.75rem auto;
}

#quickViewModal .modal-content {
    border: none;
    border-radius: 0;
    overflow: hidden;
}

#quickViewModal .modal-body {
    padding: 0;
}

#quickViewModal .modal-body .row {
    margin: 0;
}

#quickViewModal .modal-product-image-container {
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    user-select: none;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><circle cx="30" cy="30" r="28" fill="%23333" opacity="0.9"/><path d="M20 30 L26 24 M20 30 L26 36" stroke="white" stroke-width="2" fill="none" stroke-linecap="round"/><path d="M40 30 L34 24 M40 30 L34 36" stroke="white" stroke-width="2" fill="none" stroke-linecap="round"/></svg>') 30 30, auto;
}

#quickViewModal .modal-product-image-container:hover {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><circle cx="30" cy="30" r="28" fill="%23000" opacity="0.95"/><path d="M20 30 L26 24 M20 30 L26 36" stroke="white" stroke-width="2.5" fill="none" stroke-linecap="round"/><path d="M40 30 L34 24 M40 30 L34 36" stroke="white" stroke-width="2.5" fill="none" stroke-linecap="round"/></svg>') 30 30, auto;
}

#quickViewModal .modal-product-image-container.dragging {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><circle cx="30" cy="30" r="28" fill="%23000" opacity="1"/><path d="M20 30 L26 24 M20 30 L26 36" stroke="white" stroke-width="3" fill="none" stroke-linecap="round"/><path d="M40 30 L34 24 M40 30 L34 36" stroke="white" stroke-width="3" fill="none" stroke-linecap="round"/></svg>') 30 30, auto;
}

#quickViewModal .modal-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

#quickViewModal .modal-product-image.changing {
    opacity: 0;
}

#quickViewModal .modal-product-image-container:hover .modal-product-image {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

#quickViewModal .modal-product-image-container.dragging .modal-product-image {
    transform: scale(1.05);
}

#quickViewModal #modalSaleBadge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    color: #000;
    border: 1px solid #000;
    box-shadow: 2px 2px 0 #000;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    z-index: 5;
}

#quickViewModal .modal-product-details {
    width: 500px;
    height: 680px !important;
    background: #fff;
    padding: 45px 60px;
    position: absolute;
    right: 0;
    top: 0;
    overflow: hidden;
    overflow-y: auto;
}

#quickViewModal .modal-product-details::-webkit-scrollbar { width: 6px; }
#quickViewModal .modal-product-details::-webkit-scrollbar-thumb { background: #d4af37; }

#quickViewModal .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0.6;
    z-index: 10;
}

#quickViewModal .hongo-save-badge {
    background: #d9534f;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    margin-left: 10px;
    vertical-align: middle;
    text-transform: uppercase;
}

#quickViewModal #modalProductTitle {
    font-size: 28px !important;
    font-weight: 600;
    color: #232323;
    margin-bottom: 10px;
}

#quickViewModal .star-rating {
    display: flex;
    gap: 1px;
}

#quickViewModal .star-rating i        { font-size: 14px; color: #000; }
#quickViewModal .star-rating i.bi-star { color: #e0e0e0; }

#quickViewModal .hongo-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

#quickViewModal #modalProductPrice    { font-size: 24px; font-weight: 600; }
#quickViewModal #modalProductOriginalPrice { font-size: 16px; color: #999; text-decoration: line-through; }

#quickViewModal #modalProductDescription {
    font-size: 13px;
    line-height: 22px;
    color: #666;
    margin-bottom: 20px;
}

#quickViewModal #modalProductSku { font-weight: 600; color: #232323; }

#quickViewModal #modalProductStockStatus {
    background: transparent;
    color: #28a745;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    text-transform: uppercase;
    border: 1px solid #28a745;
    border-radius: 2px;
}

#quickViewModal .hongo-quantity {
    width: 100px;
    height: 63px;
    border: 1px solid #d6d6d6;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#quickViewModal #minusQuantity,
#quickViewModal #plusQuantity {
    width: 36px;
    height: 48px;
    border: none;
    background: #f7f5f5;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

#quickViewModal #modalProductQuantity {
    width: 48px;
    height: 48px;
    border: none;
    text-align: center;
    font-weight: 600;
}

#quickViewModal #modalAddtocart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

#quickViewModal #modalAddToWishlistBtn {
    width: 48px;
    height: 63px;
    background: transparent;
    border: 1px solid #d6d6d6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 0;
}

#quickViewModal #modalAddToWishlistBtn:hover {
    background: #232323;
    color: #fff;
    border-color: #322e2a;
}

#quickViewModal #modalProductViewDetails {
    font-size: 13px;
    font-weight: 500;
    text-decoration: underline;
    color: #232323;
}

#quickViewModal .modal-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer !important;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

#quickViewModal .modal-product-image-container.has-multiple-images:hover .modal-carousel-btn {
    opacity: 1;
    visibility: visible;
}

#quickViewModal .modal-carousel-prev { left: 15px; }
#quickViewModal .modal-carousel-next { right: 15px; }

#quickViewModal .modal-carousel-btn:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(-50%) scale(1.1);
}

#quickViewModal .modal-carousel-btn:active  { transform: translateY(-50%) scale(0.95); }
#quickViewModal .modal-carousel-btn i       { font-size: 18px; color: #333; }

#quickViewModal .modal-carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed !important;
}

#quickViewModal .modal-carousel-btn:disabled:hover {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

#quickViewModal .modal-image-counter {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#quickViewModal .modal-product-image-container.has-multiple-images:hover .modal-image-counter {
    opacity: 1;
    visibility: visible;
}

#quickViewModal .modal-thumbnails {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#quickViewModal .modal-product-image-container.has-multiple-images:hover .modal-thumbnails {
    opacity: 1;
    visibility: visible;
}

#quickViewModal .modal-thumbnail {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer !important;
    transition: all 0.3s ease;
    object-fit: cover;
    background: white;
}

#quickViewModal .modal-thumbnail:hover {
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

#quickViewModal .modal-thumbnail.active {
    border-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ===================================================
   16. TOAST NOTIFICATIONS
   =================================================== */

.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    color: white;
    border-radius: 5px;
    z-index: 9999;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.toast-success { background: #2ecc71; }
.toast-error   { background: #e74c3c; }
.toast-info    { background: #3498db; }

@keyframes slideIn {
    from { transform: translateX(400px); opacity: 0; }
    to   { transform: translateX(0);     opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0);     opacity: 1; }
    to   { transform: translateX(400px); opacity: 0; }
}

/* ===================================================
   18. FOOTER
   =================================================== */

.hongo-footer {
    background-color: #1a1a1a;
    color: #a0a0a0;
    padding-top: 60px;
    font-size: 0.9rem;
}

.hongo-footer h5 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hongo-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hongo-footer ul li {
    margin-bottom: 10px;
}

.hongo-footer ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid #333;
    margin-top: 40px;
}

.footer-bottom .social-icons i {
    font-size: 1.25rem;
    margin-right: 15px;
    color: #a0a0a0;
}

/* ===================================================
   19. VIDEO SECTION
   =================================================== */

.video-banner-section .video-container {
    height: 700px;
}

.video-banner-section video {
    object-fit: cover;
}

@media (max-width: 992px) { .video-banner-section .video-container { height: 450px; } }
@media (max-width: 768px) { .video-banner-section .video-container { height: 400px; }
                            .video-banner-section h1 { font-size: 2rem; } }
@media (max-width: 480px) { .video-banner-section .video-container { height: 350px; }
                            .video-banner-section h1 { font-size: 1.5rem; } }

/* ===================================================
   20. ABOUT US PAGE
   =================================================== */

.about-hero-inner {
    padding: 60px 15px;
}

.about-title,
.about-sub {
    font-family: 'Marcellus', serif;
    font-size: 64px;
    color: #fff;
    margin: 0;
    line-height: 0.95;
}

.about-sub {
    font-weight: 300;
    display: block;
    opacity: 0.95;
}

.about-lead {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 12px;
    font-family: 'Inter', sans-serif;
}

.about-story {
    padding: 80px 0;
    background: #f5f0ec;
}

.sticky-image-wrap {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}

.badge-circle {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 110px;
    height: 110px;
    background: #fff;
    border-radius: 50%;
    border: 4px solid #c07f48;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.badge-circle span {
    color: #c07f48;
    font-weight: 700;
    font-size: 20px;
}

.meta {
    color: #bba69a;
    letter-spacing: 1px;
}

.story-heading {
    font-family: 'Marcellus', serif;
    font-size: 36px;
    color: #1a1a1a;
    margin-top: 6px;
    margin-bottom: 18px;
}

.story-lead {
    font-size: 1rem;
    color: #6c6c6c;
}

.about-design {
    padding: 120px 0;
}

.design-heading {
    font-family: 'Marcellus', serif;
    font-size: 32px;
    margin-bottom: 12px;
}

.value-box  { padding: 18px; }
.value-icon { font-size: 34px; margin-bottom: 10px; }

.value-box h5 {
    font-family: 'Marcellus', serif;
    margin-bottom: 6px;
}

.value-box p {
    color: #6b6b6b;
    font-size: 0.95rem;
}

.about-studio {
    padding: 70px 0;
    background: #fff;
}

.border-right {
    border-right: 2px solid #dfd0c4 !important;
}