/* =========================
   RESET & BASE
========================= */

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

ul {
    list-style: none;
}

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

@font-face {
    font-family: "EBGaramondItalic";
    src: url('textfonts/EBGaramond-Italic.woff') format('woff');
}

html {
    font-size: 10px;
    font-family: "Josefin Sans", sans-serif;
}

:root {
    --primary-color: #1d1d1d;
}

/* =========================
   CONTAINER
========================= */

.container {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    padding: 0 30px;
}

/* =========================
   HEADER
========================= */

.top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.95),
            rgba(0, 0, 0, 0.55),
            transparent);
    padding: 18px 0 0;
    transition: 0.4s;
}

.top-header.product-header-shadow {
    background: #ffffff !important;
    background-image: none !important;
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.2) !important;
}

.top-header.product-header-shadow .logo {
    color: #111 !important;
}

.top-header.product-header-shadow .icon-box svg {
    stroke: #111 !important;
}

.top-header.product-header-shadow .menu-toggle span {
    background: #111 !important;
}

.top-header.product-header-shadow .page-nav a {
    color: #111 !important;
}

.top-header.product-header-shadow .category-nav>ul>li>a {
    color: #333 !important;
}

.top-header:hover {
    background: white;
}

/* =========================
   TOP BAR
========================= */

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
}

/* =========================
   LOGO
========================= */

.logo {
    color: white;
    text-decoration: none;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: 0.4s;
}

.top-header:hover .logo {
    color: black;
}

/* =========================
   ICONS
========================= */

.icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-box {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.4s;
}

.icon-box svg {
    stroke: white;
    transition: 0.4s;
}

.top-header:hover .icon-box svg {
    stroke: black;
}

/* =========================
   BURGER MENU TOGGLE
========================= */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 100000;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.4s;
    transform-origin: center;
}

.top-header:hover .menu-toggle span {
    background: black;
}

/* BURGER → X ANIMATION */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   LUXURY MEGA MENU
========================= */

.category-nav {
    width: 100%;
}

.category-nav>ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 15px 15px;
    flex-wrap: wrap;
}

.category-nav>ul>li>a {
    color: white;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 500;
    padding: 12px 18px;
    display: block;
    transition: 0.3s;
}

.top-header:hover .category-nav>ul>li>a {
    color: #333;
}

.category-nav>ul>li>a:hover {
    color: #f42153 !important;
}

/* MEGA MENU PANEL */
.mega-menu-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 1px solid #eaeaea;
    padding: 40px 0;
    z-index: 9999;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.category-nav:hover .mega-menu-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.mega-col {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    border-left: 1px solid #f0f0f0;
}

.mega-col:first-child {
    border-left: none;
}

.mega-col-large {
    grid-column: span 1;
}

.mega-title {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.mega-links {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.mega-links li {
    margin-bottom: 12px;
}

.mega-links a {
    color: #666 !important;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
    display: block;
    font-weight: 400;
}

.mega-links a:hover {
    color: #000 !important;
}

/* Image at bottom of columns */
.mega-item-wrap {
    margin-top: auto;
}

.mega-item-img {
    width: 100%;
    height: 110px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 10px;
}

.mega-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.mega-col:hover .mega-item-img img {
    transform: scale(1.05);
}

.mega-item-label {
    font-size: 12px;
    color: #333;
    display: block;
    font-weight: 500;
}

.mega-col-large .mega-item-img {
    height: 250px;
}

.mega-col-large .mega-title {
    display: none;
}

/* =========================
   HERO SECTION
========================= */

.hero {
    padding-top: 160px;
    height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
        url("https://abchome.com/cdn/shop/files/ABC_Spring26_-103_b0f75e83-05d3-4355-8306-b638ed954547.jpg?v=1777642696");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 80px;
    font-weight: 300;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    letter-spacing: 2px;
}

.hero-btn {
    margin-top: 60px;
    padding: 14px 35px;
    background: #f42153;
    color: white !important;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: 0.3s;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(244, 33, 83, 0.3);
}

.hero-btn:hover {
    background: white;
    color: #f42153 !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* =========================
   MOBILE OVERLAY
========================= */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 99990;
}

.overlay.active {
    display: block;
}

/* =========================
   MOBILE MENU (SIDEBAR)
========================= */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    padding: 90px 20px 20px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow-y: auto;
    z-index: 99991;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu h3 {
    margin-bottom: 20px;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-menu.active {
    right: 0;
}

/* ACCORDION */
.acc-item button {
    width: 100%;
    text-align: left;
    padding: 15px 12px;
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: 0.3s;
    font-family: "Josefin Sans", sans-serif;
}

.acc-item button:hover {
    color: #f42153;
}

.acc-content {
    display: none;
    padding: 10px 10px 10px 20px;
    background: #fdfdfd;
}

.acc-content a {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: #444;
    font-size: 15px;
    transition: 0.3s;
}

.acc-content a:hover {
    color: #f42153;
}

/* =========================
   SHOP BY CATEGORY SECTION
========================= */

.shop-by-cat {
    padding: 90px 0;
    background: #fafaf8;
}

.sbc-header {
    text-align: center;
    margin-bottom: 55px;
}

.sbc-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f42153;
    margin-bottom: 12px;
}

.sbc-header h2 {
    font-size: 38px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.sbc-header p {
    font-size: 16px;
    color: #888;
}

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

.sbc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    color: #222;
    border: 1.5px solid #f0f0f0;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
    cursor: pointer;
}

.sbc-item:hover {
    border-color: #f42153;
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(244, 33, 83, 0.12);
}

.sbc-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fdf0f3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background 0.35s ease;
}

.sbc-item:hover .sbc-icon-wrap {
    background: #f42153;
}

.sbc-icon-wrap svg {
    width: 36px;
    height: 36px;
    color: #f42153;
    transition: color 0.35s ease;
}

.sbc-item:hover .sbc-icon-wrap svg {
    color: white;
}

.sbc-name {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    transition: color 0.35s ease;
}

.sbc-item:hover .sbc-name {
    color: #f42153;
}

.sbc-count {
    font-size: 12px;
    color: #aaa;
    font-weight: 400;
}

/* =========================
   CATEGORIES SWIPER SECTION
========================= */

.categories {
    padding: 80px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 34px;
    color: #111;
}

.section-header p {
    color: #777;
    margin-top: 6px;
}

.card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.4s;
}

.card:hover img {
    transform: scale(1.05);
    filter: brightness(0.85);
}

/* Swiper overlay label */
.card .overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    /* Override gallery overlay defaults */
    inset: unset;
    opacity: 1;
    pointer-events: none;
    width: auto;
    height: auto;
}

/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #111;
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
}

.swiper-pagination-bullet {
    background: #999;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #111;
}

/* =========================
   SHARED SECTION HEADER
========================= */

.sec-header {
    text-align: center;
    margin-bottom: 55px;
}

.sec-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f42153;
    margin-bottom: 12px;
}

.sec-header h2 {
    font-size: 38px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.sec-header p {
    font-size: 16px;
    color: #888;
}

/* =========================
   FEATURED COLLECTION
========================= */

.featured-collection {
    padding: 90px 0;
    background: #fff;
}

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

.fc-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
}

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

.fc-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #f42153;
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

.fc-img {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.fc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fc-card:hover .fc-img img {
    transform: scale(1.08);
}

.fc-quick-view {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    text-align: center;
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: bottom 0.35s ease;
    cursor: pointer;
}

.fc-card:hover .fc-quick-view {
    bottom: 0;
}

.fc-info {
    padding: 20px;
}

.fc-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}

.fc-stars i {
    color: #f42153;
    font-size: 12px;
}

.fc-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
}

.fc-price {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.fc-cart-btn {
    background: #111;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-family: "Josefin Sans", sans-serif;
}

.fc-cart-btn:hover {
    background: #f42153;
}

/* =========================
   NEW ARRIVALS
========================= */

.new-arrivals {
    padding: 90px 0;
    background: #fafaf8;
}

.na-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.na-card:hover {
    transform: translateY(-6px);
}

.na-img {
    height: 230px;
    overflow: hidden;
}

.na-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.na-card:hover .na-img img {
    transform: scale(1.07);
}

.na-info {
    padding: 18px;
}

.na-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-bottom: 7px;
}

.na-stars i {
    color: #f42153;
    font-size: 12px;
}

.na-price {
    display: block;
    margin-top: 8px;
    font-size: 17px;
    font-weight: 700;
    color: #111;
}

/* New Arrivals custom swiper arrows */
.na-next,
.na-prev {
    color: #111;
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.na-next::after,
.na-prev::after {
    font-size: 16px;
}

/* =========================
   BEST SELLERS
========================= */

.best-sellers {
    padding: 90px 0;
    background: #fff;
}

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

.bs-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bs-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
}

.bs-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.bs-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bs-card:hover .bs-img img {
    transform: scale(1.07);
}

.bs-sold {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #111;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.bs-info {
    padding: 20px;
}

.bs-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}

.bs-stars i {
    color: #f42153;
    font-size: 12px;
}

.bs-review {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    margin: 10px 0 14px;
    font-style: italic;
}

.bs-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bs-price {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.bs-btn {
    background: #f42153;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-family: "Josefin Sans", sans-serif;
}

.bs-btn:hover {
    background: #d01444;
}

/* =========================
   ROOM INSPIRATION
========================= */

.room-inspiration {
    padding: 120px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.room-inspiration .sec-header h2 {
    color: #111;
}

.room-inspiration .sec-header p {
    color: #666;
}

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

.ri-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    height: 400px;
}

.ri-card.ri-large {
    grid-column: span 2;
}

.ri-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ri-card:hover img {
    transform: scale(1.08);
}

.ri-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: 0.4s;
}

.ri-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f42153;
    margin-bottom: 8px;
}

.ri-overlay p {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
    line-height: 1.4;
}

.ri-btn {
    display: inline-block;
    background: white;
    color: #111;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    width: fit-content;
    transition: background 0.3s, color 0.3s;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.35s ease;
}

.ri-card:hover .ri-btn {
    opacity: 1;
    transform: translateY(0);
}

.ri-btn:hover {
    background: #f42153;
    color: white;
}

/* =========================
   GALLERY SECTION
========================= */


.gallery {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 50px;
}

.gallery .card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery .card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

.gallery .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
    opacity: 0;
    transition: 0.4s;
    pointer-events: none;
}

.view-btn {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    background: white;
    color: black;
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transition: 0.4s;
    z-index: 10;
}

.gallery .card:hover img {
    transform: scale(1.1);
}

.gallery .card:hover .overlay {
    opacity: 1;
}

.gallery .card:hover .view-btn {
    opacity: 1;
}

/* =========================
   FOOTER
========================= */

footer {
    background: #f2f0f1;
    padding: 6rem 0 2rem;
}

footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
}

.footer-col-1,
.footer-col-2,
.footer-col-3,
.footer-col-4 {
    flex: 1;
    min-width: 220px;
}

.footer-col-1 .logo {
    font-size: 2rem;
    color: #000;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1.5rem;
}

footer h4 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #111;
}

footer p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #777;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 1rem;
}

footer a {
    text-decoration: none;
    font-size: 1.5rem;
    color: #777;
    transition: 0.3s ease;
}

footer a:hover {
    color: #000;
    padding-left: 4px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
    .mega-menu-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .mega-title {
        font-size: 14px;
    }

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

    .fc-grid,
    .bs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ri-grid {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }

    .ri-card {
        height: 280px;
    }

    .ri-card.ri-large {
        grid-column: span 2;
        height: 320px;
    }
}

@media (max-width: 900px) {
    .top-bar {
        padding-bottom: 12px;
    }

    .category-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
        order: -1;
    }

    .logo {
        font-size: 24px;
    }

    .icons {
        gap: 6px;
    }

    .icon-box {
        width: 32px;
        height: 32px;
    }

    .icon-box svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 640px) {
    .top-bar {
        padding-bottom: 10px;
    }

    .logo {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .icons {
        gap: 4px;
    }

    .icon-box {
        width: 28px;
        height: 28px;
    }

    .icon-box svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 14px;
    }

    .card img {
        height: 240px;
    }

    .gallery {
        padding: 20px;
    }

    .gallery .card img {
        height: 250px;
    }

    .fc-grid,
    .bs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ri-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .ri-card {
        height: 280px;
    }

    .ri-card.ri-large {
        grid-column: auto;
        height: 280px;
    }
}

@media (max-width: 600px) {
    .sbc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .sbc-header h2 {
        font-size: 28px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .fc-grid,
    .bs-grid {
        grid-template-columns: 1fr;
    }

    .sec-header h2 {
        font-size: 28px;
    }
}


/* =========================
   LUXURY BANNER SECTION
========================= */
.luxury-banner {
    padding: 150px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/category-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-container {
    max-width: 1000px;
    margin: auto;
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    text-align: center;
    color: white;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.lb-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: white;
    background: #f42153;
    padding: 8px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(244, 33, 83, 0.4);
}

.lb-content h2 {
    font-size: 64px;
    font-family: 'Josefin Sans', serif;
    /* Using Josefin but with a serif-like weight/style */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.lb-content p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    font-weight: 300;
}

.lb-btn {
    display: inline-block;
    padding: 20px 60px;
    background: white;
    color: #111;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.lb-btn:hover {
    background: #f42153;
    color: white;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 50px rgba(244, 33, 83, 0.3);
}

/* =========================
   WHY CHOOSE US
========================= */
.why-choose-us {
    padding: 100px 0;
    background: #fff;
}

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

.wcu-item {
    text-align: center;
    padding: 40px 25px;
    background: #fafaf8;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.wcu-item:hover {
    background: white;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: #f42153;
}

.wcu-icon {
    width: 80px;
    height: 80px;
    background: white;
    color: #f42153;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 50%;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
}

.wcu-item:hover .wcu-icon {
    background: #f42153;
    color: white;
}

.wcu-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
}

.wcu-item p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

/* =========================
   TRENDING PRODUCTS
========================= */
.trending-products {
    padding: 100px 0;
    background: #fafaf8;
}

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

.tp-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.tp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.tp-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.tp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tp-card:hover .tp-img img {
    transform: scale(1.1);
}

.tp-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translateX(60px);
    transition: all 0.4s ease;
}

.tp-card:hover .tp-overlay {
    transform: translateX(0);
}

.tp-action {
    width: 40px;
    height: 40px;
    background: white;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.tp-action:hover {
    background: #f42153;
    color: white;
}

.tp-info {
    padding: 20px;
    text-align: center;
}

.tp-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111;
}

.tp-price {
    font-size: 18px;
    font-weight: 700;
    color: #f42153;
}

/* Tablet Responsive */
@media (max-width: 1024px) {

    .wcu-grid,
    .tp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Responsive */
@media (max-width: 600px) {

    .wcu-grid,
    .tp-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .lb-content h2 {
        font-size: 36px;
    }
}

/* =========================
   STATISTICS COUNTER
========================= */
.statistics {
    padding: 100px 0;
    background: radial-gradient(circle at center, #1a1a1a, #080808);
    color: white;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h2 {
    font-size: 48px;
    font-weight: 700;
    color: #f42153;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* =========================
   CUSTOMER TESTIMONIALS
========================= */
.testimonials {
    padding: 100px 0;
    background: #fff;
}

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

.testi-card {
    padding: 40px;
    background: #fafaf8;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.testi-card:hover {
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: #f42153;
}

.testi-rating {
    margin-bottom: 20px;
}

.testi-rating i {
    color: #f42153;
    font-size: 14px;
}

.testi-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 30px;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testi-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-user-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

.testi-user-info span {
    font-size: 13px;
    color: #888;
}

/* =========================
   MASONRY GALLERY SHOWCASE
========================= */
.design-showcase {
    padding: 100px 0 50px;
    background: #fafaf8;
}

.masonry-gallery {
    columns: 3 300px;
    column-gap: 20px;
    padding: 0 50px;
}

.masonry-gallery .card {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.masonry-gallery .card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.masonry-gallery .card:hover img {
    transform: scale(1.1);
}

.masonry-gallery .view-btn {
    bottom: 20px;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 13px;
}

/* Responsive Fixes */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .masonry-gallery {
        padding: 0 20px;
    }
}

@media (max-width: 600px) {

    .stats-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .stat-item h2 {
        font-size: 36px;
    }
}

/* =========================
   CUSTOMER HOME GALLERY
========================= */
.customer-gallery {
    padding: 100px 0;
    background: #fff;
}

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

.cg-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
}

.cg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cg-item:hover img {
    transform: scale(1.1);
}

.cg-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px;
    font-size: 14px;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cg-item:hover .cg-info {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* =========================
   FAQ SECTION
========================= */
.faq {
    padding: 100px 0;
    background: #fafaf8;
}

.faq-container {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question h3 {
    font-size: 17px;
    font-weight: 600;
    color: #111;
}

.faq-question i {
    font-size: 14px;
    color: #f42153;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background: #fdf0f3;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust based on content */
}

.faq-answer p {
    padding: 0 25px 25px;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* =========================
   CONTACT SECTION
========================= */
.contact {
    padding: 100px 0;
    background: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #111;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: "Josefin Sans", sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #f42153;
}

.contact-btn {
    width: 100%;
    padding: 16px;
    background: #111;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: #f42153;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: #fdf0f3;
    color: #f42153;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 17px;
    margin-bottom: 5px;
    color: #111;
}

.info-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.map-container {
    margin-top: 10px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* ============================================================
   FINAL COMPREHENSIVE RESPONSIVE DESIGN (All Screen Sizes)
   ============================================================ */

/* --- TABLET: 1024px and Below --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .ri-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fc-grid,
    .tp-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .masonry-gallery {
        columns: 2 300px;
        padding: 0 20px;
    }
}

/* --- MOBILE LANDSCAPE & SMALL TABLET: 768px and Below --- */
@media (max-width: 768px) {

    /* Header & Nav */
    .menu-toggle {
        display: flex;
    }

    .category-nav {
        display: none;
        /* Hide main desktop nav */
    }

    .top-header {
        background: white;
        /* Force white on mobile for readability */
        padding: 10px 0;
    }

    .top-header .logo {
        color: #111;
        font-size: 24px;
    }

    .top-header .icon-box svg {
        stroke: #111;
    }

    .menu-toggle span {
        background: #111;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 11px;
    }

    /* Grid Overrides */
    .wcu-grid,
    .stats-grid,
    .testimonial-grid,
    .cg-grid {
        grid-template-columns: 1fr;
    }

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

    .ri-card.ri-large {
        grid-column: span 1;
    }

    .ri-card {
        height: 300px;
    }

    /* Section Spacing */
    section {
        padding: 60px 0;
    }

    .sec-header h2 {
        font-size: 28px;
    }

    /* Luxury Banner */
    .lb-content h2 {
        font-size: 32px;
    }

    .lb-content p {
        font-size: 14px;
    }


}

/* --- SMALL MOBILE: 480px and Below --- */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 20px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    .fc-grid,
    .tp-grid {
        grid-template-columns: 1fr;
    }

    .masonry-gallery {
        columns: 1;
    }

    .stat-item h2 {
        font-size: 32px;
    }

    .sec-header {
        margin-bottom: 30px;
    }

    .tp-card,
    .fc-card {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============================================================
   PREMIUM MAIN FOOTER
   ============================================================ */

.main-footer {
    background: #0a0a0a;
    color: #fff;
    padding-top: 0;
}

/* Newsletter Section */
.footer-newsletter {
    background: #111;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.newsletter-text p {
    color: #999;
    font-size: 16px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    color: white;
    outline: none;
    transition: 0.3s;
}

.newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #f42153;
}

.newsletter-form button {
    background: #f42153;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #d41a46;
    transform: translateY(-2px);
}

/* Main Footer Area */
.footer-main {
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    display: block;
}

.footer-logo span {
    color: #f42153;
}

.footer-brand p {
    color: #999;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 15px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.4s;
    font-size: 18px;
}

.footer-socials a:hover {
    background: #f42153;
    color: white;
    transform: translateY(-5px);
}

.footer-links h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #f42153;
}

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

.footer-links ul li a {
    color: #999;
    font-size: 15px;
    transition: 0.3s;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: white;
    transform: translateX(8px);
}

/* Bottom Footer */
.footer-bottom {
    background: #000;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #666;
    font-size: 14px;
}

.payment-methods {
    display: flex;
    gap: 20px;
    font-size: 24px;
    color: #444;
}

.payment-methods i:hover {
    color: #999;
}

.bottom-links a {
    color: #666;
    font-size: 14px;
    margin-left: 25px;
    transition: 0.3s;
}

.bottom-links a:hover {
    color: #fff;
}

/* ============================================================
   CUSTOMER FAVOURITES / PRODUCT DETAILS
   ============================================================ */

.best-sellers {
    padding: 110px 0;
    background:
        radial-gradient(circle at top left, rgba(244, 33, 83, 0.08), transparent 32%),
        radial-gradient(circle at bottom right, rgba(29, 29, 29, 0.05), transparent 26%),
        linear-gradient(180deg, #f8f7f4 0%, #ffffff 100%);
}

.best-sellers .sec-header p {
    max-width: 560px;
}

.bs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.bs-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 28px;
    overflow: hidden;
    color: #fff;
    background: rgba(14, 14, 14, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(18px);
    transform: translateY(0);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    cursor: pointer;
}

.bs-card:hover {
    transform: translateY(-10px);
    border-color: rgba(244, 33, 83, 0.28);
    box-shadow: 0 34px 65px rgba(0, 0, 0, 0.16);
}

.bs-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #111;
}

.bs-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.7s ease;
}

.bs-card:hover .bs-img img {
    transform: scale(1.08);
    filter: saturate(1.05);
}

.bs-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.bs-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
    flex: 1;
}

.bs-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.bs-kicker {
    color: #f42153;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.bs-stars {
    display: flex;
    gap: 4px;
    color: #ffcf5a;
    font-size: 13px;
    white-space: nowrap;
}

.bs-info h3 {
    font-size: 24px;
    line-height: 1.15;
}

.bs-desc {
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.75;
    min-height: 78px;
}

.bs-bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
}

.bs-price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.bs-meta {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.bs-btn {
    border: 0;
    padding: 13px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f42153, #ff7b5c);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.6px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    box-shadow: 0 14px 30px rgba(244, 33, 83, 0.25);
}

.bs-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(244, 33, 83, 0.32);
    filter: brightness(1.02);
}

.product-page {
    padding: 130px 0 100px;
    background:
        linear-gradient(180deg, #111 0%, #111 18%, #f8f7f4 18%, #ffffff 100%);
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    letter-spacing: 0.4px;
}

.product-breadcrumb a {
    color: #fff;
    transition: 0.25s ease;
}

.product-breadcrumb a:hover {
    color: #f42153;
}

.product-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    transition: 0.25s ease;
}

.product-back-btn:hover {
    background: rgba(244, 33, 83, 0.16);
    border-color: rgba(244, 33, 83, 0.34);
    transform: translateY(-2px);
}

.product-hero-panel {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
    padding: 32px 34px;
    border-radius: 28px;
    color: #fff;
    background: rgba(17, 17, 17, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(18px);
}

.product-hero-copy {
    max-width: 760px;
}

.product-hero-copy .sec-tag {
    color: #ff7890;
}

.product-hero-copy h1 {
    margin: 10px 0 12px;
    font-size: clamp(34px, 4.4vw, 62px);
    line-height: 1;
}

.product-hero-copy p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 28px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(14px);
}

.product-gallery-card,
.product-summary-card,
.product-info-card,
.product-review-card,
.related-product-card {
    border-radius: 28px;
    overflow: hidden;
}

.product-gallery-card {
    padding: 22px;
}

.product-main-image {
    border-radius: 24px;
    overflow: hidden;
    background: #111;
}

.product-main-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.product-main-image:hover img {
    transform: scale(1.03);
}

.product-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.product-thumb {
    position: relative;
    border: 0;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
    opacity: 0.72;
    transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}

.product-thumb img {
    width: 100%;
    height: 104px;
    object-fit: cover;
    display: block;
}

.product-thumb:hover,
.product-thumb.active {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.product-summary-card,
.product-info-card,
.product-review-card {
    padding: 28px;
}

.product-summary-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(244, 33, 83, 0.1);
    color: #f42153;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.detail-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.detail-price {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    color: #111;
}

.detail-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: #444;
    font-size: 14px;
}

.detail-rating .stars {
    display: inline-flex;
    gap: 4px;
    color: #ffcf5a;
}

.detail-summary-text {
    color: #666;
    font-size: 16px;
    line-height: 1.85;
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.detail-meta-item {
    padding: 16px;
    border-radius: 18px;
    background: rgba(17, 17, 17, 0.03);
}

.detail-meta-label {
    display: block;
    margin-bottom: 6px;
    color: #777;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.detail-meta-value {
    font-size: 15px;
    line-height: 1.6;
    color: #222;
}

.detail-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.add-to-cart-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 22px;
    border-radius: 999px;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #f42153, #ff7b5c);
    color: #fff;
    box-shadow: 0 16px 34px rgba(244, 33, 83, 0.22);
}

.ghost-btn {
    background: rgba(17, 17, 17, 0.06);
    color: #111;
}

.add-to-cart-btn:hover,
.ghost-btn:hover {
    transform: translateY(-2px);
}

.product-info-stack {
    display: grid;
    gap: 28px;
}

.info-list,
.review-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.info-list li,
.review-item {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(17, 17, 17, 0.03);
}

.info-list li {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

.review-item h4 {
    margin-bottom: 6px;
    font-size: 16px;
    color: #111;
}

.review-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.review-item .review-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #f42153;
    font-size: 13px;
    font-weight: 700;
}

.related-products-section {
    padding: 0 0 100px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.related-product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.related-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 58px rgba(0, 0, 0, 0.12);
}

.related-product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.related-product-card:hover img {
    transform: scale(1.06);
}

.related-product-content {
    padding: 20px;
}

.related-product-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #111;
}

.related-product-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.related-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.related-product-price {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.related-product-card .bs-btn {
    padding: 11px 16px;
}

@media (max-width: 1100px) {

    .bs-grid,
    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .best-sellers {
        padding: 80px 0;
    }

    .bs-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .bs-info h3 {
        font-size: 22px;
    }

    .product-page {
        padding-top: 110px;
    }

    .product-hero-panel {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .product-main-image img {
        height: 360px;
    }

    .product-thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-meta-grid {
        grid-template-columns: 1fr;
    }

    .detail-price-row,
    .related-product-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {

    .bs-info,
    .product-summary-card,
    .product-info-card,
    .product-review-card,
    .product-gallery-card {
        padding: 18px;
    }

    .bs-bottom,
    .detail-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .bs-btn,
    .add-to-cart-btn,
    .ghost-btn {
        width: 100%;
    }
}

/* Back to Top */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #f42153;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    /* Shown via JS */
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 1000;
    transition: 0.4s;
    box-shadow: 0 5px 15px rgba(244, 33, 83, 0.3);
}

#backToTop:hover {
    transform: translateY(-5px);
    background: #111;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links ul li a:hover {
        transform: translateY(-3px) translateX(0);
    }

    .bottom-wrapper {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .bottom-links {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .bottom-links a {
        margin-left: 0;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: 12px;
    }
}