body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    background: #000000;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.site-header {
    padding: 0px 0;
    border-bottom: 1px solid #eee;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px;
}

.logo img {
    height: 50px;
    /* 🔥 main control */
    width: auto;
    display: block;
}

/* Tablet */
@media (max-width: 1024px) {
    .logo img {
        height: 45px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .logo img {
        height: 40px;
    }
}

.logo img {
    max-width: 100%;
    object-fit: contain;
}

.logo a {
    font-size: 24px;
    text-decoration: none;
    color: black;
    font-family: 'Playfair Display', serif;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    color: #111;
    font-size: 14px;
    letter-spacing: 1px;
}

.header-icons span {
    margin-left: 15px;
    cursor: pointer;
}

.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    background: #f8f8f8;
}

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

.hero .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    border: 1px solid black;
    text-decoration: none;
    color: black;
}

.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    background: #f9f9f9;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 56px;
    font-weight: 500;
}

.hero p {
    margin-top: 15px;
    font-size: 16px;
    color: #555;
}

.btn {
    margin-top: 25px;
    padding: 12px 35px;
    border: 1px solid #000;
    text-decoration: none;
    color: #000;
    display: inline-block;
}

.hero-slider {
    width: 100%;
    overflow: hidden;
}

.hero-slider .n2-ss-slider {
    max-width: 100% !important;
}

/* RESET */
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* TOP MENU */
.main-nav .menu {
    display: flex;
    gap: 30px;
}

/* LI */
.main-nav li {
    position: relative;
}

/* LINKS */
.main-nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 0;
    display: block;
}

/* 🔴 HIDE SUBMENU */
.main-nav li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #080707;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

/* SHOW ON HOVER */
.main-nav li:hover>ul {
    display: block;
}

/* CHILD ITEMS */
.main-nav li ul li {
    padding: 8px 20px;
}

/* CHILD LINKS */
.main-nav li ul a {
    font-size: 13px;
    text-transform: none;
}

.site-header {
    position: relative;
    z-index: 1000;
    background: #8d1010;
    /* important for visibility */
}

.main-nav li {
    position: relative;
}

.main-nav li ul {
    position: absolute;
    z-index: 99999 !important;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 20px;
}

/* POSITION EACH ITEM */
.category-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.category-item:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}

.category-item.large {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.category-item:nth-child(4) {
    grid-column: 3;
    grid-row: 1;
}

.category-item:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

.category-item {
    height: 100%;
}

.category-item {
    height: 100%;
    overflow: hidden;
}

/* FIX IMAGE SIZE */
.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 🔥 KEY LINE */
    display: block;
}

.category-item img {
    transition: 0.5s ease;
}

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

.section-title {
    text-align: center;
    font-size: 30px;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.category-content {
    text-align: center;
    margin-top: 12px;
}

.category-content h3 {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #111;
}

.category-item {
    display: flex;
    flex-direction: column;
}

.category-content h3 {
    transition: 0.3s;
}

.category-item:hover h3 {
    letter-spacing: 2px;
}

.featured-products {
    padding: 80px 0;
    background: #020101;
}

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

/* CARD */
.product-card {
    text-align: left;
}

/* IMAGE BOX */
.product-image {
    background: #000000;
    padding: 30px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: auto;
    transition: 0.4s ease;
}

/* HOVER */
.product-card:hover img {
    transform: scale(1.05);
}

/* TITLE */
.product-title {
    font-size: 14px;
    margin-top: 15px;
    color: #111;
}

/* PRICE */
.product-price {
    margin-top: 8px;
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.section-header {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.slider-arrows {
    display: flex;
    gap: 10px;
}

.swiper-button-prev,
.swiper-button-next {
    position: static;
    width: 35px;
    height: 35px;
    border: 1px solid #ddd;
    color: #111;
}

.product-card {
    text-align: left;
}

/* IMAGE BOX */
.product-image {
    background: #080707;
    padding: 30px;
    margin-bottom: 15px;
}

/* TITLE */
.product-card h3 {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.product-card h3 {
    transition: 0.3s ease;
}

.product-card:hover h3 {
    opacity: 0.7;
}

/* PRICE */
.product-card p {
    font-size: 14px;
    font-weight: 500;
    color: #f3f3f3;
}

/* PRICE "From" style */
.product-card p .woocommerce-Price-amount {
    font-weight: 600;
}

.section-header {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 30px;
    letter-spacing: 2px;
    text-transform: capitalize;
    font-family: 'Playfair Display', serif;
}

/* Move arrows to right side */
.slider-arrows {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 10px;
}

.about-brand {
    padding: 50px 0;
    background: #543939;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT IMAGES */
.about-images {
    position: relative;
}

.image-main img {
    width: 100%;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 60%;
}

.image-overlay img {
    width: 100%;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* RIGHT CONTENT */
.about-content {
    max-width: 500px;
}

.small-title {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f8f5f5;
}

.about-content h2 {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    margin: 15px 0 20px;
    line-height: 1.3;
}

.about-content p {
    font-size: 14px;
    color: #eeeeee;
    margin-bottom: 15px;
}

.highlight {
    font-weight: 600;
    color: #111;
}

.link-text {
    text-decoration: underline;
}

/* LINKS */
.about-links {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.about-links li {
    margin-bottom: 8px;
}

.about-links a {
    text-decoration: underline;
    color: #dfdfdf;
    font-size: 14px;
}

/* EXPLORE TEXT */
.explore {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}

.site-footer {
    background: #000000;
    color: #ccc;
    padding: 80px 0 40px;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

/* HEADINGS */
.footer-col h4 {
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #fff;
}

/* LIST */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    text-decoration: none;
    color: #ccc;
    font-size: 13px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

/* SOCIAL */
.social-icons a {
    margin-right: 10px;
    font-size: 14px;
}

/* NEWSLETTER */
.newsletter input {
    width: 100%;
    padding: 10px 5px;
    margin-bottom: 10px;
    background: transparent;
    border: 1px solid #555;
    color: #fff;
}

.newsletter button {
    padding: 10px 20px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

/* BOTTOM */
.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
}

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

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

@media (max-width: 768px) {
    .container {
        width: 92%;
    }
}

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

@media (max-width: 768px) {

    .header-inner {
        flex-direction: row;
        align-items: flex-start;
    }

    .main-nav .menu {
        flex-direction: column;
        width: 100%;
        display: none;
    }

    .main-nav.active .menu {
        display: flex;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 20px;
        margin-top: 10px;
    }

    .main-nav li ul {
        position: static;
        box-shadow: none;
    }
}

/* =========================
   HERO SLIDER
========================= */

@media (max-width: 768px) {

    .hero-slider {
        height: auto;
    }

    .n2-ss-slider {
        height: 60vh !important;
    }
}

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

@media (max-width: 768px) {

    .categories-section {
        padding: 50px 0;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }

    .category-item.large {
        grid-column: auto;
        grid-row: auto;
    }

    .category-item img {
        height: 250px;
    }

    .category-content {
        margin-bottom: 20px;
        text-align: center;
    }

    .section-title {
        font-size: 22px;
    }
}

/* =========================
   PRODUCT SLIDER
========================= */

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .featured-products {
        padding: 50px 0;
    }

    .product-card {
        text-align: center;
    }

    .product-image {
        padding: 20px;
    }

    .product-card h3 {
        font-size: 13px;
    }

    .product-card p {
        font-size: 13px;
    }

    .slider-arrows {
        display: none;
    }

    .section-header {
        text-align: center;
    }

    .section-title {
        font-size: 22px;
    }
}

/* =========================
   ABOUT SECTION
========================= */

@media (max-width: 768px) {

    .about-brand {
        padding: 60px 0;
    }

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

    .about-images {
        order: 1;
    }

    .about-content {
        order: 2;
        max-width: 100%;
    }

    .image-overlay {
        position: static;
        margin-top: 20px;
        width: 100%;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-content p {
        font-size: 13px;
    }
}

/* =========================
   INSTAGRAM SECTION
========================= */

@media (max-width: 768px) {

    .instagram-section {
        padding: 50px 0;
    }

    .instagram-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .instagram-grid img {
        height: 180px;
    }
}

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

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {

    .site-footer {
        padding: 60px 0 30px;
    }

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

    .footer-col {
        margin-bottom: 25px;
    }

    .footer-col h4 {
        font-size: 12px;
    }

    .footer-col a {
        font-size: 12px;
    }

    .newsletter input {
        font-size: 14px;
    }

    .newsletter button {
        width: 100%;
        text-align: center;
    }

    .footer-bottom {
        text-align: center;
        font-size: 11px;
    }
}

.faq-section {
    padding: 80px 0;
    background: #0a0808;
}

/* TITLE */
.faq-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

/* WRAPPER */
.faq-wrapper {
    max-width: 800px;
    margin: auto;
}

/* ITEM */
.faq-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    cursor: pointer;
}

/* QUESTION */
.faq-question {
    font-size: 15px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
}

/* ANSWER */
.faq-answer {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    display: none;
    line-height: 1.6;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    display: block;
}

.bestseller-shapes {
    padding: 50px 0;
    background: #000000;
}

/* SPLIT LAYOUT */
.split-section {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

/* LEFT TEXT */
.split-left {
    width: 30%;
}

.split-left h2 {
    font-size: 28px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.split-left p {
    font-size: 14px;
    color: #666;
}

/* RIGHT SCROLL */
.split-right {
    width: 70%;
    display: flex;
    gap: 20px;
    overflow-x: auto;
}

/* HIDE SCROLLBAR */
.split-right::-webkit-scrollbar {
    display: none;
}

/* PRODUCT CARD */
.mini-card {
    min-width: 180px;
    background: #fff;
    padding: 10px;
    text-align: center;
    transition: 0.4s ease;
}

.mini-img img {
    width: 100%;
}

.mini-title {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: black!important;
}

/* HOVER */
.mini-card:hover {
    transform: translateY(-5px);
}

/* SHAPE CARD */
.shape-card {
    min-width: 150px;
    text-align: center;
}

.shape-card img {
    width: 100%;
    border-radius: 50%;
    transition: 0.4s;
}

.shape-card span {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    letter-spacing: 1px;
}

/* HOVER EFFECT */
.shape-card:hover img {
    transform: scale(1.08);
}

@media (max-width: 768px) {

    .split-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .split-left,
    .split-right {
        width: 100%;
    }

    .split-left {
        margin-bottom: 20px;
    }
}

.bestseller-shapes {
    padding: 50px 0;
    background: #020202;
}

/* SPLIT */
.split-section {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

.split-left {
    width: 30%;
}

.split-left h2 {
    font-size: 30px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.split-left p {
    font-size: 14px;
    color: #666;
}

.split-right {
    width: 70%;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

/* HIDE SCROLLBAR */
.split-right::-webkit-scrollbar {
    display: none;
}

/* PRODUCT CARD */
.mini-card {
    min-width: 200px;
    background: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

.mini-img img {
    width: 100%;
    transition: 0.4s;
}

/* HOVER OVERLAY */
.mini-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.05);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.4s;
}

/* TITLE */
.mini-title {
    display: block;
    margin-top: 12px;
    font-size: 13px;
}

/* HOVER EFFECT */
.mini-card:hover img {
    transform: scale(1.05);
}

.mini-card:hover .mini-overlay {
    opacity: 1;
}

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

/* SHAPES */
.shape-card {
    min-width: 150px;
    text-align: center;
    transition: 0.4s;
}

.shape-card img {
    width: 100%;
    border-radius: 50%;
    transition: 0.4s;
}

.shape-card span {
    display: block;
    margin-top: 10px;
    font-size: 13px;
}

/* SHAPE HOVER */
.shape-card:hover img {
    transform: scale(1.1);
}

.shape-card:hover {
    transform: translateY(-5px);
}

.video-showcase {
    padding: 50px 0;
    background: #000000;
    text-align: center;
}

/* GRID */
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* VIDEO ITEM */
.video-item {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

/* VIDEO */
.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

/* HOVER EFFECT */
.video-item:hover video {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.video-item::after {
    content: "▶";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #fff;
    opacity: 0.8;
}

.trust-section {
    padding: 15px 0;
    background: #000000;
}

/* GRID */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 20px;
}

/* ITEM */
.trust-item {
    padding: 20px;
}

/* ICON */
.trust-icon {
    font-size: 26px;
    color: #3cc0c6;
    margin-bottom: 12px;
}

.trust-icon img {
    width: 50px;
}

/* TEXT */
.trust-item p {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #eeeeee;
    font-weight: 600;
}

@media (max-width: 768px) {

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

    .trust-item p {
        font-size: 11px;
    }
}

.category-grid-section {
    padding: 0px 0;
}

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

/* CARD */
.category-card {
    position: relative;
    overflow: hidden;
    height: 250px;
}

/* IMAGE */
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

/* OVERLAY */
.category-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* TEXT */
.category-card h3 {
    color: #fff;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    background: #322e2e;
    padding: 5px 10px;
}

/* BUTTON */
.category-card a {
    background: #020202;
    color: #f7f6f6;
    padding: 8px 16px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #787878;
}

/* HOVER EFFECT */
.category-card:hover img {
    transform: scale(1.08);
}

@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .category-card {
        height: 200px;
    }
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #000;
    color: #fff;
    font-size: 10px;
    padding: 4px 8px;
}

.trending-section {
    padding: 50px 0;
    background: #000000;
}

/* TITLE */
.trending-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

/* SLIDER */
.trending-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.trending-slider::-webkit-scrollbar {
    display: none;
}

/* CARD */
.trend-card {
    min-width: 220px;
    text-align: center;
    transition: 0.3s;
}

.trend-img {
    background: #f7f7f7;
    padding: 5px;
}

.trend-img img {
    width: 100%;
}

/* TITLE */
.trend-card h3 {
    font-size: 14px;
    margin: 10px 0;
}

/* PRICE */
.trend-card p {
    font-size: 14px;
    font-weight: 600;
}

/* HOVER */
.trend-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .trend-card {
        min-width: 160px;
    }

    .trend-img {
        padding: 15px;
    }
}

/* PRODUCT CARD */
.trend-card {
    min-width: 240px;
    text-align: left;
}

/* IMAGE */
.trend-img {
    background: #f8f8f8;
    padding: 5px;
    margin-bottom: 15px;
}

/* TITLE (LUXURY STYLE) */
.trend-card h3 {
    font-size: 13px;
    font-weight: 400;
    color: #f8f4f4;
    line-height: 1.5;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}

/* PRICE */
.trend-card p {
    font-size: 14px;
    font-weight: 500;
    color: #d3d3d3;
}

/* PRICE AMOUNT */
.trend-card .woocommerce-Price-amount {
    font-weight: 600;
}

/* OPTIONAL: FROM STYLE */
.trend-card p::before {
    content: "From ";
    font-weight: 400;
    color: #777;
}

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

a:hover {
    text-decoration: none;
}

/* TOP ANNOUNCEMENT BAR */
.top-bar {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 6px 10px;
    font-size: 12px;
    letter-spacing: 1px;
}

/* TEXT */
.top-bar p {
    margin: 0;
}

/* CENTER MAIN CART BLOCK */
.wp-block-woocommerce-cart {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* CENTER MAIN + SIDEBAR */
.wc-block-cart {
    max-width: 1100px;
    margin: 0 auto;
}

/* FIX INNER LAYOUT */
.wc-block-components-sidebar-layout {
    max-width: 1100px;
    margin: 0 auto;
}

body.woocommerce-cart main {
    text-align: center;
}

body main {
    text-align: center;
}

/* ===== HERO ===== */
.about-hero {
    background: url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338') center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    text-align: center;
    color: #fff;
}

.about-overlay h1 {
    font-size: 40px;
    letter-spacing: 3px;
}

.about-overlay p {
    font-size: 16px;
    color: #c9a646;
}

/* ===== STORY ===== */
.about-story {
    background: #000;
    color: #fff;
    padding: 80px 20px;
}

.container {
    max-width: 100%;
    margin: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-text p {
    color: #ccc;
    margin-bottom: 15px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* ===== FEATURES ===== */
.about-features {
    background: #111;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.about-features h2 {
    margin-bottom: 40px;
}

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

.feature h3 {
    color: #c9a646;
    margin-bottom: 10px;
}

.feature p {
    color: #aaa;
}

/* ===== CTA ===== */
.about-cta {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #c9a646;
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

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

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

    .about-overlay h1 {
        font-size: 28px;
    }
}

.about-video-hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.about-video-hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.video-overlay h1 {
    font-size: 40px;
    letter-spacing: 3px;
}

.video-overlay p {
    color: #c9a646;
}

.about-founder {
    background: #000;
    color: #fff;
    padding: 0px 0;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.founder-image img {
    width: 100%;
    border-radius: 10px;
}

.founder-text h2 {
    margin-bottom: 20px;
}

.testimonials {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    margin-top: 30px;
}

.testimonial {
    min-width: 300px;
    background: #000;
    padding: 30px;
    border: 1px solid #222;
}

.instagram-section {
    background: #000;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

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

.insta-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

@media(max-width:768px) {

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

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

    .testimonial-slider {
        flex-direction: column;
    }
}

/* VIDEO STRIP */
.video-strip {
    background: #000;
    padding: 20px 0;
}

/* GRID */
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

/* VIDEO */
.video-grid video {
    width: 100%;
    height: 400px;
    /* 👈 controls size */
    object-fit: cover;
}

/* HOVER EFFECT */
.video-grid video:hover {
    opacity: 0.85;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-grid video {
        height: 140px;
    }
}

/* SECTION */
.lux-grid-section {
    background: #f5f5f5;
}

/* GRID */
.lux-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* ITEMS */
.lux-item {
    min-height: 400px;
}

/* IMAGE */
.lux-item.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXT */
.lux-item.text {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* TITLE */
.lux-item.text h3 {
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

/* TEXT */
.lux-item.text p {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

@media (max-width: 768px) {

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

    .lux-item.text {
        padding: 30px;
        text-align: center;
    }
}

/* HERO */
.contact-hero {
    height: 50vh;
    background: url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px 50px;
    text-align: center;
    color: #fff;
}

.contact-hero-overlay h1 {
    font-size: 36px;
    letter-spacing: 3px;
}

.contact-hero-overlay p {
    color: #c9a646;
}

/* CONTACT SECTION */
.contact-page {
    background: #000;
    color: #fff;
    padding: 80px 20px;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* LEFT */
.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info p {
    color: #ccc;
}

/* FORM */
.contact-form {
    background: #111;
    padding: 40px;
    border: 1px solid #222;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #000;
    border: 1px solid #333;
    color: #fff;
}

/* BUTTON */
.contact-form input[type="submit"] {
    background: #c9a646;
    color: #000;
    border: none;
    font-weight: 600;
}

/* FEATURES */
.contact-features {
    background: #111;
    color: #fff;
    padding: 60px 20px;
}

.features-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}

.feature h3 {
    color: #c9a646;
}

/* MOBILE */
@media (max-width: 768px) {

    .contact-container {
        grid-template-columns: 1fr;
    }

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

    .contact-hero-overlay h1 {
        font-size: 26px;
    }
}

/* HIDE TOGGLE ON DESKTOP */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

    /* SHOW HAMBURGER */
    .menu-toggle {
        display: block;
        color: #000;
    }

    /* HIDE MENU INITIALLY */
    .main-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #000;
        padding: 20px;
    }

    /* SHOW WHEN ACTIVE */
    .main-menu.active {
        display: block;
    }

    /* MENU ITEMS */
    .main-menu ul {
        list-style: none;
        padding: 0;
    }

    .main-menu ul li {
        margin-bottom: 15px;
    }

    .main-menu ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
    }
}

/* FLOATING BUTTON */
.appointment-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #c9a646;
    color: #000;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

/* HOVER */
.appointment-btn:hover {
    transform: translateY(-3px);
    background: #e0b84f;
}

@media (max-width: 768px) {
    .appointment-btn {
        bottom: 15px;
        right: 15px;
        font-size: 13px;
        padding: 10px 14px;
    }
}

.appointment-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 166, 70, 0.6);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(201, 166, 70, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(201, 166, 70, 0);
    }
}

/* FIX GALLERY HEIGHT */
.woocommerce-product-gallery {
    height: auto !important;
}

/* FIX VIEWPORT */
.flex-viewport {
    height: auto !important;
}

/* FIX SLIDER WIDTH */
.woocommerce-product-gallery__wrapper {
    width: 100% !important;
    transform: none !important;
}

/* FIX IMAGE SIZE */
.woocommerce-product-gallery__image img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

/* REMOVE SLIDER BEHAVIOR (OPTIONAL BUT BETTER) */
.flex-control-nav {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

/* THUMBNAILS */
.flex-control-thumbs img {
    width: 60px !important;
    height: 60px !important;
    object-fit: cover;
    border: 1px solid #333;
}

.custom-product-layout {
    display: flex;
    max-width: 1100px;
    margin: 40px auto;
    gap: 40px;
    align-items: center;
}

/* LEFT */
.product-left {
    width: 50%;
}

/* RIGHT */
body.single-product .product-right {
    width: 50%;
    text-align: left !important;
}

.product-right form.cart {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-top: 15px;
}

.quantity input {
    width: 60px;
    height: 40px;
    text-align: center;
}

.single_add_to_cart_button {
    height: 40px;
    background: #c9a646 !important;
    color: #000 !important;
    padding: 0 20px;
}

/* SHOW ONLY ACTIVE IMAGE */
.woocommerce-product-gallery__wrapper {
    display: flex;
}

/* HIDE ALL IMAGES */
.woocommerce-product-gallery__image {
    display: none;
}

/* SHOW FIRST IMAGE ONLY */
.woocommerce-product-gallery__image:first-child {
    display: block;
}

/* STYLE MAIN IMAGE */
.woocommerce-product-gallery__image img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

/* THUMBNAILS */
.flex-control-thumbs {
    display: flex !important;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.flex-control-thumbs li {
    list-style: none;
}

.flex-control-thumbs img {
    width: 60px !important;
    height: 60px !important;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid #ccc;
}

/* RESET GALLERY */
.woocommerce-product-gallery {
    width: 100%;
    text-align: center;
}

/* MAIN IMAGE CONTAINER */
.woocommerce-product-gallery__wrapper {
    display: block !important;
    width: 100% !important;
    transform: none !important;
}

/* ALL IMAGES HIDDEN */
.woocommerce-product-gallery__image {
    display: none;
}

/* SHOW ONLY ACTIVE */
.woocommerce-product-gallery__image:first-child {
    display: block;
}

/* MAIN IMAGE BIG + CENTER */
.woocommerce-product-gallery__image img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}

/* REMOVE ZOOM ICON */
.woocommerce-product-gallery__trigger {
    display: none !important;
}

/* THUMBNAILS CENTER */
.flex-control-thumbs {
    display: flex !important;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

/* THUMB STYLE */
.flex-control-thumbs img {
    width: 60px !important;
    height: 60px !important;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid #ddd;
    padding: 2px;
}

/* ACTIVE THUMB */
.flex-control-thumbs img:hover {
    border-color: #c9a646;
}

/* DESCRIPTION WRAPPER */
.woocommerce-Tabs-panel--description {
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
    line-height: 1.7;
    font-size: 15px;
    color: #d4d4d4;
}

/* TITLE */
.woocommerce-Tabs-panel--description h2 {
    text-align: center;
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

/* PARAGRAPHS */
.woocommerce-Tabs-panel--description p {
    margin-bottom: 15px;
}

/* BOLD TEXT */
.woocommerce-Tabs-panel--description strong {
    color: #d8d8d8;
    font-weight: 600;
}

/* WARNING LINE */
.woocommerce-Tabs-panel--description p em {
    display: block;
    margin: 20px 0;
    color: #c9a646;
    font-style: normal;
    font-weight: 500;
}

/* BULLETS */
.woocommerce-Tabs-panel--description ul {
    margin-top: 20px;
    padding-left: 20px;
}

.woocommerce-Tabs-panel--description ul li {
    margin-bottom: 10px;
}

/* KEY FEATURES TITLE */
.woocommerce-Tabs-panel--description h3 {
    margin-top: 30px;
    font-size: 18px;
}

.woocommerce div.product .woocommerce-tabs .panel {
    margin: 0 0 2em;
    padding: 0px 50px !important;
    max-width: 100% !important;
}

@media (max-width: 768px) {

    .product-slider .swiper-wrapper {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .product-slider .swiper-slide {
        width: 100% !important;
        margin: 0 !important;
    }
}

@media (max-width: 768px) {

    .split-section {
        display: block;
    }

    .split-left,
    .split-right {
        width: 100% !important;
    }

    .split-left {
        margin-bottom: 20px;
    }

}

/* RIGHT SIDE */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* CART ICON */
.header-cart a {
    position: relative;
    font-size: 20px;
    text-decoration: none;
}

/* CART COUNT BADGE */
.cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #c9a646;
    color: #000;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .header-right {
        gap: 12px;
    }
}

/* ACCOUNT ICON */
.header-account a {
    font-size: 20px;
    text-decoration: none;
    color: #000;
    display: inline-flex;
    align-items: center;
}

.header-account a:hover svg {
    stroke: #c9a646;
}

/* PHONE */
.header-phone a {
    font-size: 14px;
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* HOVER */
.header-phone a:hover {
    color: #c9a646;
}

@media (max-width: 768px) {

    .header-phone a {
        font-size: 18px;
    }

    .header-phone a::after {
        content: "";
    }

}

/* APPOINTMENT BUTTON */
.appointment-header-btn {
    background: #c9a646;
    color: #000;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 20px;
    white-space: nowrap;
    transition: 0.3s;
}

/* HOVER */
.appointment-header-btn:hover {
    background: #e0b84f;
}

@media (max-width: 768px) {

    .appointment-header-btn {
        padding: 6px 10px;
        font-size: 0;
        /* hide text */
    }

    .appointment-header-btn::before {
        content: "📅";
        font-size: 16px;
    }

}

@media (max-width: 768px) {
    .appointment-header-btn {
        display: none;
    }
}

/* BUTTON */
.appointment-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #c9a646;
    color: #000;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

/* ICON */
.appointment-header-btn svg {
    width: 16px;
    height: 16px;
}

/* HOVER */
.appointment-header-btn:hover {
    background: #e0b84f;
    transform: translateY(-1px);
}

@media (max-width: 768px) {

    .appointment-header-btn {
        padding: 6px 10px;
    }

    .appt-text {
        display: none;
        /* only icon on mobile */
    }

}

.appointment-header-btn {
    box-shadow: 0 4px 12px rgba(201, 166, 70, 0.4);
}

/* SECTION */
.home-trust {
    background: #606060;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

/* INNER */
.trust-inner {
    max-width: 900px;
    margin: auto;
}

/* STARS */
.trust-stars {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    letter-spacing: 6px;
    opacity: 0.8;
}

/* HEADING */
.home-trust h2 {
    font-size: 34px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* TEXT */
.home-trust p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.95;
}

/* MOBILE */
@media (max-width: 768px) {
    .home-trust h2 {
        font-size: 24px;
    }

    .home-trust p {
        font-size: 14px;
    }
}

.trust-stars {
    color: #ffd700;
}

/* SOCIAL CONTAINER */
.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* ICON STYLE */
.social-icons a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
}

/* HOVER */
.social-icons a:hover {
    background: #c9a646;
    color: #000;
    transform: translateY(-2px);
}

.social-icons a:nth-child(1):hover {
    background: #1877f2;
    color: #fff;
}

/* Facebook */
.social-icons a:nth-child(2):hover {
    background: #e4405f;
    color: #fff;
}

/* Instagram */
.social-icons a:nth-child(3):hover {
    background: #0a66c2;
    color: #fff;
}

/* LinkedIn */

/* ============================= */
/* 💎 BLOG SINGLE PAGE */
/* ============================= */

.single-post main {
    max-width: 60%;
    margin: 60px auto;
    padding: 0 20px;
    text-align: left;
    /* FIX CENTER ISSUE */
}

/* TITLE */
.single-post h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* HEADINGS */
.single-post h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.single-post h3 {
    font-size: 20px;
    margin-top: 30px;
}

/* PARAGRAPH */


/* LIST */


.single-post li {
    margin-bottom: 10px;
}

/* IMAGE */
.single-post img {
    width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

/* ============================= */
/* 💎 HERO TITLE CENTER */
/* ============================= */

.single-post .entry-title {
    text-align: center;
    margin-bottom: 30px;
}
.category-grid-section.category-grid-section.homesection{
    background: #606060;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f7e7a1, #d4af37);
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}
.shop-sidebar
{
    background-color: black!important;
}
.woocommerce-account .woocommerce
{
    max-width: 90%!important;
}

/* MAIN SHOP LAYOUT */
    .woocommerce ul.products li.product {
        text-align: center;
        transition: all 0.3s ease;
    }

    .woocommerce ul.products li.product:hover {
        transform: translateY(-5px);
    }

    /* IMAGE */
    .woocommerce ul.products li.product img {
        border-radius: 12px;
        transition: transform 0.4s ease;
    }

    .woocommerce ul.products li.product:hover img {
        transform: scale(1.05);
    }

    /* TITLE */
    .woocommerce ul.products li.product h2 {
        font-size: 15px;
        margin: 12px 0 6px;
        font-weight: 500;
    }

    /* PRICE */
    .woocommerce ul.products li.product .price {
        color: #c9a646;
        font-weight: 600;
        margin-bottom: 10px;
    }

    /* BUTTON */
    .woocommerce ul.products li.product .button {
        background: transparent;
        border: 1px solid #c9a646;
        color: #c9a646;
        padding: 8px 16px;
        border-radius: 25px;
        transition: all 0.3s;
    }

    .woocommerce ul.products li.product .button:hover {
        background: #c9a646;
        color: #000;
    }

    .shop-topbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        font-size: 14px;
    }

    .woocommerce-result-count {
        margin: 0;
    }

    .woocommerce-ordering select {
        padding: 6px 10px;
    }

    /* MAIN LAYOUT */
.shop-layout{

    display:grid !important;
    grid-template-columns:260px 1fr !important;

    gap:60px !important;

    max-width:1500px !important;

    margin:70px auto !important;

    padding:0 40px !important;

    align-items:start !important;

}

/* SIDEBAR */
.shop-sidebar{

    background:#0d0d0d !important;

    padding:30px 22px !important;

    border-radius:18px !important;

    border:1px solid rgba(255,255,255,0.08) !important;

    box-shadow:0 15px 40px rgba(0,0,0,0.35) !important;

    height:fit-content !important;

    position:sticky !important;
    top:30px !important;

}

/* FILTER SECTIONS */
.shop-sidebar .woof_container{

    margin-bottom:28px !important;

    padding-bottom:22px !important;

    border-bottom:1px solid rgba(255,255,255,0.08) !important;

}

.shop-sidebar .woof_container:last-child{
    border-bottom:none !important;
    margin-bottom:0 !important;
    padding-bottom:0 !important;
}

/* TITLES */
.shop-sidebar .woof_container h4{

    font-size:13px !important;

    font-weight:600 !important;

    letter-spacing:2px !important;

    text-transform:uppercase !important;

    color:#ffffff !important;

    margin-bottom:18px !important;

}

/* LABEL ROW */
.shop-sidebar .woof_container label{

    display:flex !important;

    align-items:center !important;

    gap:12px !important;

    font-size:14px !important;

    font-weight:400 !important;

    color:#cfcfcf !important;

    margin-bottom:12px !important;

    cursor:pointer !important;

    transition:all .3s ease !important;

}

.shop-sidebar .woof_container label:hover{
    color:#ffffff !important;
}

/* CHECKBOX */
.shop-sidebar input[type="checkbox"]{

    width:16px !important;
    height:16px !important;

    accent-color:#c9a646 !important;

    cursor:pointer !important;

}

/* INPUTS */
.shop-sidebar input[type="text"],
.shop-sidebar select{

    width:100% !important;

    background:#151515 !important;

    border:1px solid rgba(255,255,255,0.08) !important;

    border-radius:10px !important;

    padding:12px 14px !important;

    font-size:13px !important;

    color:#ffffff !important;

    outline:none !important;

    box-shadow:none !important;

}

/* PLACEHOLDER */
.shop-sidebar input::placeholder{
    color:#888 !important;
}

/* SELECT */
.shop-sidebar select{

    appearance:none !important;

    background:#151515 !important;

}

/* PRICE SLIDER */
.irs--flat .irs-line{
    background:#222 !important;
}

.irs--flat .irs-bar{
    background:#c9a646 !important;
}

.irs--flat .irs-handle > i:first-child{
    background:#c9a646 !important;
}

/* PRICE BOXES */
.irs--flat .irs-from,
.irs--flat .irs-to,
.irs--flat .irs-single{

    background:#c9a646 !important;

    color:#000 !important;

    border-radius:6px !important;

    font-size:11px !important;

    font-weight:600 !important;

}

/* REMOVE UGLY BUTTON */
.woof_submit_search_form_container{
    display:none !important;
}

/* PRODUCTS AREA */
.shop-products{
    min-width:0 !important;
}

/* MOBILE */
@media(max-width:991px){

    .shop-layout{

        grid-template-columns:1fr !important;

        gap:35px !important;

        padding:0 20px !important;

    }

    .shop-sidebar{

        position:relative !important;
        top:auto !important;

    }

}

    /* MAIN BANNER */
    .shop-banner {
        height: 200px;
        position: relative;
        background: url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338') center/cover no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    /* DARK OVERLAY */
    .shop-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
    }

    /* CONTENT */
    .banner-content {
        position: relative;
        z-index: 2;
        color: #fff;
        max-width: 800px;
        padding: 0 20px;
    }

    /* TITLE */
    .banner-content h1 {
        font-size: 36px;
        letter-spacing: 3px;
        font-weight: 500;
        margin-bottom: 10px;
    }

    /* TEXT */
    .banner-content p {
        font-size: 15px;
        color: #ddd;
        line-height: 1.6;
    }

    .shop-banner {
        background-size: cover;
        background-position: center;
    }
    body.page main > h3
    {
        color: white!important;
    }
    .wc-block-components-checkout-order-summary__title-text{
        color: white!important;
    }
    .wc-block-components-form .wc-block-components-text-input label, .wc-block-components-text-input label
    {
        color: black;
    }
    .wc-block-components-order-summary .wc-block-components-order-summary-item__quantity span
    {
        color: #000;
    }
    .wc-block-checkout__shipping-method-option.wc-block-checkout__shipping-method-option--selected
    {
        color: #000;
    }