/* =============================================
   Responsive Styles
   ============================================= */

/* ---------------------------------------------
   Large Desktop (1400px+)
   --------------------------------------------- */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* ---------------------------------------------
   Desktop / Default (above 992px)
   Hamburger is hidden — desktop grid unchanged
   --------------------------------------------- */
.hamburger {
    display: none;
}

/* ---------------------------------------------
   Small Desktops / Large Tablets (≤ 1199px)
   --------------------------------------------- */
@media (max-width: 1199px) {
    .header-content-wrapper {
        padding: 0 20px;
    }

    .navlinks-wrapper ul {
        gap: 20px;
    }
}

/* ---------------------------------------------
   Tablets (≤ 991px) — Hamburger appears
   --------------------------------------------- */
@media (max-width: 991px) {

    .mobile-menu,
    .mobile-overlay{
        display: block;
    }
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        padding: 0;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 100;
    }

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--black-color);
        border-radius: 2px;
        transition: transform 0.35s cubic-bezier(0.77, 0, 0.175, 1),
                    opacity 0.25s ease;
        transform-origin: center;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .navlinks-wrapper {
        display: none;
    }

    .header-content-wrapper {
        padding: 0 15px;
    }

    .header-action-icons {
        gap: 12px;
    }

    /* --- Mobile Overlay --- */
    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
        -webkit-backdrop-filter: blur(2px);
        backdrop-filter: blur(2px);
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* --- Off-Canvas Mobile Menu --- */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: var(--white-color);
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        display: flex;
        flex-direction: column;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        flex-shrink: 0;
    }

    .mobile-menu-logo img {
        height: 36px;
        width: auto;
    }

    .mobile-menu-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: none;
        background: rgba(0, 0, 0, 0.04);
        color: var(--black-color);
        font-size: 18px;
        cursor: pointer;
        transition: background 0.25s ease, color 0.25s ease;
    }

    .mobile-menu-close:hover {
        background: var(--primary-color);
        color: var(--white-color);
    }

    .mobile-nav-links {
        list-style: none;
        margin: 0;
        padding: 12px 0;
        display: flex;
        flex-direction: column;
    }

    .mobile-nav-links li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .mobile-nav-links li:last-child {
        border-bottom: none;
    }

    .mobile-nav-links li a {
        display: block;
        font-family: "butler", sans-serif;
        font-size: 17px;
        font-weight: 500;
        color: var(--black-color);
        text-decoration: none;
        padding: 14px 20px;
        transition: color 0.25s ease, background 0.25s ease, padding-left 0.25s ease;
    }

    .mobile-nav-links li a:hover {
        color: var(--white-color);
        background: var(--primary-color);
        padding-left: 28px;
    }

    /* --- Mobile Submenu (Categories) --- */
    .has-submenu .submenu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
    }

    .submenu-arrow {
        font-size: 11px;
        margin-left: auto;
        transition: transform 0.3s ease;
        pointer-events: none;
    }

    .has-submenu.open > .submenu-toggle .submenu-arrow {
        transform: rotate(180deg);
    }

    .mobile-submenu {
        list-style: none;
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    .mobile-submenu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
    }

    .mobile-submenu li:last-child {
        border-bottom: none !important;
    }

    .mobile-submenu li a {
        font-size: 15px !important;
        padding: 12px 20px 12px 36px !important;
        color: #555 !important;
        background: none !important;
    }

    .mobile-submenu li a:hover {
        color: var(--primary-color) !important;
        background: rgba(154, 126, 72, 0.06) !important;
        padding-left: 44px !important;
    }

    /* Override parent hover when submenu is open */
    .has-submenu.open > .submenu-toggle {
        color: var(--primary-color) !important;
        background: rgba(154, 126, 72, 0.08) !important;
        padding-left: 28px !important;
    }

    /* Body scroll lock */
    body.menu-open { overflow: hidden; }
}

/* ---------------------------------------------
   Tablets Portrait / Large Mobile (≤ 767px)
   --------------------------------------------- */
@media (max-width: 767px) {
    .header-content-wrapper {
        gap: 16px;
        padding: 12px 15px;
    }

    .header-action-icons {
        gap: 10px;
    }
}

/* ---------------------------------------------
   Mobile (≤ 575px)
   --------------------------------------------- */
@media (max-width: 575px) {
    .header-content-wrapper {
        gap: 14px;
        padding: 14px 15px;
    }

    .header-logo a img {
        max-height: 40px;
    }

    .hamburger {
        width: 36px;
        height: 36px;
        gap: 4px;
    }

    .hamburger span {
        width: 20px;
    }

    .search-icon a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .cart-icon a {
        font-size: 17px;
    }
}

/* ---------------------------------------------
   Very Small Mobile (≤ 399px)
   --------------------------------------------- */
@media (max-width: 399px) {
    .mobile-menu {
        width: 100vw;
    }

    .header-action-icons {
        gap: 8px;
    }
}

/* =============================================
   Cart Off-Canvas – Responsive
   ============================================= */

@media (max-width: 575px) {
    .cart-offcanvas {
        width: 100vw;
        max-width: 100vw;
    }

    .cart-offcanvas-header {
        padding: 16px 18px;
    }

    .cart-offcanvas-header h3 {
        font-size: 20px;
    }

    .cart-offcanvas-body {
        padding: 14px 18px;
    }

    .cart-item {
        gap: 12px;
        padding: 14px 0;
    }

    .cart-item-img {
        width: 65px;
        height: 65px;
    }

    .cart-item-title {
        font-size: 15px;
    }

    .cart-offcanvas-footer {
        padding: 16px 18px;
    }
}

/* =============================================
   Search Overlay – Responsive
   ============================================= */

@media (max-width: 575px) {
    .search-overlay-panel {
        max-width: 100vw;
        min-height: 100vh;
        min-height: 100dvh;
        border-radius: 0;
    }

    .search-overlay-header {
        padding: 16px 18px;
        gap: 10px;
    }

    .search-input-wrapper {
        padding: 12px 16px;
    }

    .search-input {
        font-size: 15px;
    }

    .search-close-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .search-suggestion {
        padding: 12px 18px;
    }

    .search-suggestion-img {
        width: 44px;
        height: 44px;
    }
}

/* =============================================
   Testimonials Section – Responsive
   ============================================= */

/* ---------------------------------------------
   Tablets (≤ 991px)
   --------------------------------------------- */
@media (max-width: 991px) {
    .testimonials-sec {
        padding-left: 60px;
        padding-right: 60px;
    }

    .testimonials-heading-wrapper h2 {
        font-size: 45px;
    }

    .testimonials-heading-wrapper p {
        width: 60%;
    }

    .testimonials-arrow {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }
}

/* ---------------------------------------------
   Mobile (≤ 575px)
   --------------------------------------------- */
@media (max-width: 575px) {
    .testimonials-sec {
        padding: 50px 0;
        padding-left: 50px;
        padding-right: 50px;
    }

    .testimonials-heading-wrapper h2 {
        font-size: 36px;
    }

    .testimonials-heading-wrapper p {
        width: 100%;
    }

    .testimonials-slider {
        padding: 0 10px;
    }

    .testimonials-slider .slick-slide {
        padding: 0 6px;
    }

    .testimonials-box {
        padding: 20px;
    }

    .testimonial-desc p {
        font-size: 17px;
    }

    .testimonial-user-content h5 {
        font-size: 20px;
    }

    .testimonials-arrow {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }
}

/* =============================================
   Products Section – Responsive
   ============================================= */

/* ---------------------------------------------
   Tablets (≤ 991px)
   --------------------------------------------- */
@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-heading-wrapper h2 {
        font-size: 45px;
    }
}

/* ---------------------------------------------
   Mobile (≤ 575px)
   --------------------------------------------- */
@media (max-width: 575px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .products-heading-wrapper h2 {
        font-size: 36px;
    }

    .products-heading-wrapper p {
        width: 100%;
    }

    .products-tabs {
        gap: 8px;
    }

    .products-tab {
        padding: 10px 24px;
        font-size: 15px;
    }

    .product-img-area {
        padding: 30px;
    }

    .product-img-area img {
        max-height: 180px;
    }

    .product-info {
        padding: 22px 22px 24px;
    }

    .product-info h3 {
        font-size: 24px;
    }

    .product-info .price {
        font-size: 26px;
    }
}

/* =============================================
   About Page – Responsive
   ============================================= */

/* ---------------------------------------------
   Tablets (≤ 991px)
   --------------------------------------------- */
@media (max-width: 991px) {
    .about-story-wrapper {
        gap: 50px;
    }

    .about-story-content h2 {
        font-size: 42px;
    }

    .about-section-heading h2 {
        font-size: 45px;
    }

    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .about-process-line {
        display: none;
    }

    .about-counters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .about-counter-number {
        font-size: 48px;
    }
}

/* ---------------------------------------------
   Tablets Portrait / Large Mobile (≤ 767px)
   --------------------------------------------- */
@media (max-width: 767px) {
    .about-story-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-story-img {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-story-content {
        text-align: center;
    }

    .about-story-content .primary-btn {
        display: flex;
        justify-content: center;
    }

    .about-mission-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .about-mission-card {
        padding: 36px 30px;
    }
}

/* ---------------------------------------------
   Mobile (≤ 575px)
   --------------------------------------------- */
@media (max-width: 575px) {
    .about-story-sec {
        padding: 60px 0;
    }

    .about-story-content h2 {
        font-size: 34px;
    }

    .about-section-heading {
        margin-bottom: 36px;
    }

    .about-section-heading h2 {
        font-size: 36px;
    }

    .about-mission-sec,
    .about-features-sec,
    .about-process-sec {
        padding: 60px 0;
    }

    .about-mission-card h3 {
        font-size: 28px;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-feature-card {
        padding: 32px 24px;
    }

    .about-feature-card h4 {
        font-size: 22px;
    }

    .about-process-timeline {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
        gap: 36px;
    }

    .about-counters-sec {
        padding: 60px 0;
    }

    .about-counters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .about-counter-number {
        font-size: 40px;
    }

    .about-counter-item p {
        font-size: 13px;
        letter-spacing: 0.5px;
    }
}

/* ---------------------------------------------
   Very Small Mobile (≤ 399px)
   --------------------------------------------- */
@media (max-width: 399px) {
    .about-story-content h2 {
        font-size: 30px;
    }

    .about-section-heading h2 {
        font-size: 32px;
    }

    .about-counter-number {
        font-size: 34px;
    }
}

/* =============================================
   Community Page – Responsive
   ============================================= */

/* ---------------------------------------------
   Tablets (≤ 991px)
   --------------------------------------------- */
@media (max-width: 991px) {
    .community-intro-wrapper {
        gap: 50px;
    }

    .community-intro-content h2 {
        font-size: 42px;
    }

    .community-section-heading h2 {
        font-size: 45px;
    }

    .community-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .community-benefits-wrapper {
        gap: 50px;
    }

    .community-benefits-content h2 {
        font-size: 42px;
    }

    .community-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .community-events-grid .community-event-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        justify-self: center;
    }

    .community-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .community-cta-content h2 {
        font-size: 45px;
    }
}

/* ---------------------------------------------
   Tablets Portrait / Large Mobile (≤ 767px)
   --------------------------------------------- */
@media (max-width: 767px) {
    .community-intro-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .community-intro-img {
        max-width: 500px;
        margin: 0 auto;
    }

    .community-intro-content {
        text-align: center;
    }

    .community-intro-content .primary-btn {
        display: flex;
        justify-content: center;
    }

    .community-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .community-benefits-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .community-benefits-img {
        max-width: 500px;
        margin: 0 auto;
    }

    .community-benefits-content {
        text-align: center;
    }

    .community-benefits-list li {
        justify-content: flex-start;
    }

    .community-benefits-content .primary-btn {
        display: flex;
        justify-content: center;
    }

    .community-events-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .community-events-grid .community-event-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .community-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .community-cta-content h2 {
        font-size: 40px;
    }
}

/* ---------------------------------------------
   Mobile (≤ 575px)
   --------------------------------------------- */
@media (max-width: 575px) {
    .community-intro-sec,
    .community-features-sec,
    .community-benefits-sec,
    .community-events-sec,
    .community-gallery-sec,
    .community-faq-sec {
        padding: 60px 0;
    }

    .community-intro-content h2 {
        font-size: 34px;
    }

    .community-section-heading {
        margin-bottom: 36px;
    }

    .community-section-heading h2 {
        font-size: 36px;
    }

    .community-features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .community-feature-card {
        padding: 32px 24px;
    }

    .community-feature-card h4 {
        font-size: 22px;
    }

    .community-benefits-content h2 {
        font-size: 34px;
    }

    .community-event-content {
        padding: 22px 22px 26px;
    }

    .community-event-content h4 {
        font-size: 22px;
    }

    .community-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .community-gallery-item img {
        aspect-ratio: 1 / 1;
    }

    .community-faq-header {
        padding: 20px 22px;
    }

    .community-faq-header h4 {
        font-size: 17px;
    }

    .community-faq-body p {
        padding: 0 22px 20px;
        font-size: 15px;
    }

    .community-cta-sec {
        padding: 60px 0;
    }

    .community-cta-content h2 {
        font-size: 36px;
    }
}

/* ---------------------------------------------
   Very Small Mobile (≤ 399px)
   --------------------------------------------- */
@media (max-width: 399px) {
    .community-intro-content h2 {
        font-size: 30px;
    }

    .community-section-heading h2 {
        font-size: 32px;
    }

    .community-benefits-content h2 {
        font-size: 30px;
    }

    .community-cta-content h2 {
        font-size: 32px;
    }
}

/* =============================================
   Shop Page – Responsive (Homepage-Matched)
   ============================================= */

/* --- Tablets & Below (≤ 1199px) --- */
@media (max-width: 1199px) {
    .sp-layout {
        gap: 30px;
    }

    .sp-sidebar {
        width: 250px;
        min-width: 250px;
    }

    .sp-grid {
        gap: 20px;
    }

    .sp-card-img {
        padding: 24px;
        min-height: 170px;
    }

    .sp-card-img img {
        max-height: 170px;
    }

    .sp-card-info {
        padding: 20px 20px 24px;
    }

    .sp-card-title {
        font-size: 18px;
    }

    .sp-price {
        font-size: 22px;
    }
}

/* --- Tablets (≤ 991px) --- */
@media (max-width: 991px) {
    .sp-layout {
        display: block;
    }

    .sp-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sp-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: min(340px, 88vw);
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
        z-index: 1001;
        background: var(--white-color);
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        padding: 24px;
        overflow-y: auto;
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.08);
        border-radius: 0;
    }

    .sp-sidebar.active {
        transform: translateX(0);
    }

    .sp-sidebar-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 18px;
        border-bottom: 1px solid #E8E3DA;
        margin-bottom: 16px;
    }

    .sp-sidebar-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: none;
        background: #F5F0E8;
        color: #333;
        font-size: 16px;
        cursor: pointer;
        transition: background 0.25s ease, color 0.25s ease;
    }

    .sp-sidebar-close:hover {
        background: var(--primary-color);
        color: var(--white-color);
    }

    /* Overlay */
    .sp-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
        -webkit-backdrop-filter: blur(3px);
        backdrop-filter: blur(3px);
    }

    .sp-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    body.sp-filters-open {
        overflow: hidden;
    }

    .sp-mobile-filter-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 9px 18px;
        border: 1px solid #E0DBD3;
        border-radius: 8px;
        background: transparent;
        font-family: "Poppins", sans-serif;
        font-size: 13px;
        font-weight: 500;
        color: #555;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .sp-mobile-filter-btn:hover {
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

    .sp-mobile-filter-btn i {
        font-size: 13px;
    }
}

/* --- Tablets Portrait / Large Mobile (≤ 767px) --- */
@media (max-width: 767px) {
    .sp {
        padding: 36px 0 60px;
    }

    .sp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .sp-toolbar {
        flex-wrap: wrap;
        gap: 14px;
        padding-bottom: 18px;
    }

    .sp-toolbar-left {
        gap: 10px;
        flex-wrap: wrap;
    }

    .sp-toolbar-right {
        gap: 12px;
    }

    .sp-title {
        font-size: 24px;
    }

    .sp-sort-label {
        display: none;
    }

    .sp-count {
        font-size: 12px;
    }
}

/* --- Mobile (≤ 575px) --- */
@media (max-width: 575px) {
    .sp {
        padding: 28px 0 48px;
    }

    .sp-grid {
        gap: 14px;
    }

    .sp-card {
        border-radius: 12px;
    }

    .sp-card-img {
        padding: 20px;
        min-height: 150px;
    }

    .sp-card-img img {
        max-height: 150px;
    }

    .sp-card-info {
        padding: 16px 16px 20px;
    }

    .sp-card-title {
        font-size: 15px;
    }

    .sp-card-cat {
        font-size: 9px;
        letter-spacing: 0.8px;
    }

    .sp-price {
        font-size: 20px;
    }

    .sp-price-old {
        font-size: 11px;
    }

    .sp-price-group {
        gap: 5px;
    }

    .sp-badge {
        padding: 3px 8px;
        font-size: 9px;
    }

    .sp-wishlist {
        width: 30px;
        height: 30px;
        font-size: 12px;
        top: 10px;
        right: 10px;
    }

    .sp-card-rating i {
        font-size: 9px;
    }

    .sp-card-rating span {
        font-size: 10px;
    }

    .sp-card-btn a {
        padding: 10px 20px;
        font-size: 12px;
    }

    .sp-title {
        font-size: 22px;
    }

    .sp-mobile-filter-btn {
        padding: 7px 14px;
        font-size: 12px;
    }

    .sp-pagination {
        gap: 6px;
        margin-top: 40px;
        padding-top: 24px;
    }

    .sp-page {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 12px;
        border-radius: 8px;
    }
}

/* --- Very Small Mobile (≤ 399px) --- */
@media (max-width: 399px) {
    .sp-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sp-card-img {
        min-height: 200px;
    }

    .sp-card-img img {
        max-height: 200px;
    }

    .sp-toolbar-right {
        width: 100%;
        justify-content: space-between;
    }

    .sp-toolbar-left {
        width: 100%;
    }
}

/* =============================================
   Contact Page – Responsive
   ============================================= */

/* --- Tablets (≤ 991px) --- */
@media (max-width: 991px) {
    .ct-intro-wrapper {
        gap: 50px;
    }

    .ct-intro-content h2 {
        font-size: 42px;
    }

    .ct-form-heading h2 {
        font-size: 42px;
    }

    .ct-why-heading h2,
    .ct-map-heading h2,
    .ct-faq-heading h2 {
        font-size: 45px;
    }

    .ct-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ct-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ct-cta-content h2 {
        font-size: 45px;
    }
}

/* --- Tablets Portrait / Large Mobile (≤ 767px) --- */
@media (max-width: 767px) {
    .ct-intro-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ct-intro-img {
        max-width: 500px;
        margin: 0 auto;
    }

    .ct-intro-content {
        text-align: center;
    }

    .ct-intro-content .primary-btn {
        display: flex;
        justify-content: center;
    }

    .ct-info-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .ct-form-heading h2 {
        font-size: 36px;
    }

    .ct-form-sec .ct-form-row {
        grid-template-columns: 1fr;
    }

    .ct-why-heading h2 {
        font-size: 36px;
    }

    .ct-why-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .ct-map-heading h2,
    .ct-faq-heading h2 {
        font-size: 36px;
    }

    .ct-map-wrapper iframe {
        height: 350px;
    }

    .ct-cta-content h2 {
        font-size: 36px;
    }
}

/* --- Mobile (≤ 575px) --- */
@media (max-width: 575px) {
    .ct-intro-sec,
    .ct-info-sec,
    .ct-form-sec,
    .ct-why-sec,
    .ct-map-sec,
    .ct-faq-sec,
    .ct-cta-sec {
        padding: 60px 0;
    }

    .ct-intro-content h2 {
        font-size: 34px;
    }

    .ct-info-card {
        padding: 32px 24px;
    }

    .ct-info-card h4 {
        font-size: 22px;
    }

    .ct-form-heading {
        margin-bottom: 36px;
    }

    .ct-form-heading h2 {
        font-size: 30px;
    }

    .ct-form-sec .ct-form-group input,
    .ct-form-sec .ct-form-group textarea {
        padding: 14px 16px;
        font-size: 14px;
    }

    .ct-form-sec .ct-form-group label {
        font-size: 14px;
        top: 14px;
        left: 16px;
    }

    .ct-form-sec .ct-form-group input:focus ~ label,
    .ct-form-sec .ct-form-group input:not(:placeholder-shown) ~ label,
    .ct-form-sec .ct-form-group textarea:focus ~ label,
    .ct-form-sec .ct-form-group textarea:not(:placeholder-shown) ~ label {
        top: -10px;
        left: 12px;
        font-size: 11px;
    }

    .ct-form-sec .ct-form-submit .primary-btn a {
        padding: 14px 36px;
        font-size: 15px;
    }

    .ct-why-heading {
        margin-bottom: 36px;
    }

    .ct-why-heading h2 {
        font-size: 30px;
    }

    .ct-why-card {
        padding: 32px 24px;
    }

    .ct-why-card h4 {
        font-size: 22px;
    }

    .ct-map-heading {
        margin-bottom: 36px;
    }

    .ct-map-heading h2 {
        font-size: 30px;
    }

    .ct-map-wrapper iframe {
        height: 280px;
    }

    .ct-faq-heading {
        margin-bottom: 36px;
    }

    .ct-faq-heading h2 {
        font-size: 30px;
    }

    .ct-faq-header {
        padding: 20px 22px;
    }

    .ct-faq-header h4 {
        font-size: 17px;
    }

    .ct-faq-body p {
        padding: 0 22px 20px;
        font-size: 15px;
    }

    .ct-cta-sec {
        padding: 60px 0;
    }

    .ct-cta-content h2 {
        font-size: 30px;
    }
}

/* --- Very Small Mobile (≤ 399px) --- */
@media (max-width: 399px) {
    .ct-intro-content h2 {
        font-size: 30px;
    }

    .ct-why-heading h2,
    .ct-map-heading h2,
    .ct-faq-heading h2 {
        font-size: 26px;
    }

    .ct-cta-content h2 {
        font-size: 26px;
    }

    .ct-form-heading h2 {
        font-size: 26px;
    }
}

/* ============================================================
   Categories Page – Responsive
   ============================================================ */

/* --- Tablets (≤ 991px) --- */
@media (max-width: 991px) {
    .cg-intro-wrapper {
        gap: 50px;
    }

    .cg-intro-content h2 {
        font-size: 42px;
    }

    .cg-featured-heading h2,
    .cg-collections-heading h2,
    .cg-why-heading h2,
    .cg-lifestyle-heading h2 {
        font-size: 45px;
    }

    .cg-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cg-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cg-lifestyle-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cg-cta-content h2 {
        font-size: 45px;
    }
}

/* --- Tablets Portrait / Large Mobile (≤ 767px) --- */
@media (max-width: 767px) {
    .cg-intro-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cg-intro-img {
        max-width: 500px;
        margin: 0 auto;
    }

    .cg-intro-content {
        text-align: center;
    }

    .cg-intro-content .primary-btn {
        display: flex;
        justify-content: center;
    }

    .cg-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cg-collections-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .cg-collections-heading h2,
    .cg-why-heading h2,
    .cg-lifestyle-heading h2 {
        font-size: 36px;
    }

    .cg-why-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .cg-lifestyle-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .cg-featured-heading p,
    .cg-collections-heading p,
    .cg-lifestyle-heading p {
        width: 100%;
    }

    .cg-cta-content h2 {
        font-size: 36px;
    }
}

/* --- Mobile (≤ 575px) --- */
@media (max-width: 575px) {
    .cg-intro-sec,
    .cg-featured-sec,
    .cg-collections-sec,
    .cg-why-sec,
    .cg-lifestyle-sec,
    .cg-cta-sec {
        padding: 60px 0;
    }

    .cg-intro-content h2 {
        font-size: 34px;
    }

    .cg-featured-heading h2,
    .cg-collections-heading h2,
    .cg-why-heading h2,
    .cg-lifestyle-heading h2 {
        font-size: 34px;
    }

    .cg-categories-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .cg-category-info {
        padding: 20px 20px 24px;
    }

    .cg-collection-img img {
        height: 300px;
    }

    .cg-collection-overlay {
        padding: 28px 24px;
    }

    .cg-collection-overlay h4 {
        font-size: 26px;
    }

    .cg-lifestyle-info {
        padding: 22px 22px 26px;
    }

    .cg-cta-sec {
        padding: 60px 0;
    }

    .cg-cta-content h2 {
        font-size: 30px;
    }
}

/* --- Very Small Mobile (≤ 399px) --- */
@media (max-width: 399px) {
    .cg-intro-content h2 {
        font-size: 30px;
    }

    .cg-featured-heading h2,
    .cg-collections-heading h2,
    .cg-why-heading h2,
    .cg-lifestyle-heading h2 {
        font-size: 28px;
    }

    .cg-cta-content h2 {
        font-size: 26px;
    }
}


/* =============================================
   Coming Soon Page — Responsive Styles
   ============================================= */

/* --- Tablets (≤ 991px) --- */
@media (max-width: 991px) {
    .cs-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cs-hero-content h2 {
        font-size: 45px;
    }

    .cs-collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cs-collections-heading h2 {
        font-size: 42px;
    }

    .cs-countdown-heading h2 {
        font-size: 42px;
    }

    .cs-countdown-box {
        width: 120px;
        height: 120px;
    }

    .cs-countdown-num {
        font-size: 42px;
    }

    .cs-countdown-separator {
        font-size: 38px;
    }

    .cs-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cs-why-heading h2 {
        font-size: 42px;
    }

    .cs-gallery-heading h2 {
        font-size: 42px;
    }

    .cs-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cs-newsletter-content h2 {
        font-size: 42px;
    }

    .cs-faq-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cs-faq-heading h2 {
        font-size: 42px;
    }

    .cs-cta-content h2 {
        font-size: 45px;
    }
}

/* --- Tablet Portrait (≤ 767px) --- */
@media (max-width: 767px) {
    .cs-hero-content h2 {
        font-size: 38px;
        text-align: center;
    }

    .cs-hero-content p {
        text-align: center;
        width: 100%;
    }

    .cs-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cs-collections-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .cs-collections-heading h2 {
        font-size: 36px;
    }

    .cs-countdown-heading h2 {
        font-size: 36px;
    }

    .cs-countdown-grid {
        gap: 14px;
    }

    .cs-countdown-box {
        width: 100px;
        height: 100px;
    }

    .cs-countdown-num {
        font-size: 34px;
    }

    .cs-countdown-separator {
        font-size: 30px;
    }

    .cs-countdown-label {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .cs-why-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .cs-why-heading h2 {
        font-size: 36px;
    }

    .cs-gallery-heading h2 {
        font-size: 36px;
    }

    .cs-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cs-newsletter-content h2 {
        font-size: 36px;
    }

    .cs-newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .cs-newsletter-btn {
        justify-content: center;
    }

    .cs-faq-heading h2 {
        font-size: 36px;
    }

    .cs-cta-content h2 {
        font-size: 38px;
    }
}

/* --- Mobile (≤ 575px) --- */
@media (max-width: 575px) {
    .cs-hero-sec,
    .cs-collections-sec,
    .cs-countdown-sec,
    .cs-why-sec,
    .cs-gallery-sec,
    .cs-newsletter-sec,
    .cs-faq-sec {
        padding: 60px 0;
    }

    .cs-cta-sec {
        padding: 80px 0;
    }

    .cs-hero-content h2 {
        font-size: 34px;
    }

    .cs-collections-heading h2,
    .cs-countdown-heading h2,
    .cs-why-heading h2,
    .cs-gallery-heading h2,
    .cs-newsletter-content h2,
    .cs-faq-heading h2 {
        font-size: 34px;
    }

    .cs-countdown-box {
        width: 80px;
        height: 80px;
    }

    .cs-countdown-num {
        font-size: 28px;
    }

    .cs-countdown-separator {
        font-size: 26px;
        margin-top: -20px;
    }

    .cs-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .cs-faq-question {
        padding: 18px 20px;
    }

    .cs-faq-question h4 {
        font-size: 17px;
    }

    .cs-faq-answer p {
        padding: 0 20px 18px;
        font-size: 14px;
    }

    .cs-cta-content h2 {
        font-size: 34px;
    }
}

/* --- Very Small Mobile (≤ 399px) --- */
@media (max-width: 399px) {
    .cs-hero-content h2 {
        font-size: 28px;
    }

    .cs-collections-heading h2,
    .cs-countdown-heading h2,
    .cs-why-heading h2,
    .cs-gallery-heading h2,
    .cs-newsletter-content h2,
    .cs-faq-heading h2 {
        font-size: 28px;
    }

    .cs-countdown-grid {
        gap: 10px;
    }

    .cs-countdown-box {
        width: 70px;
        height: 70px;
        border-radius: 14px;
    }

    .cs-countdown-num {
        font-size: 24px;
    }

    .cs-countdown-separator {
        font-size: 22px;
        margin-top: -16px;
    }

    .cs-countdown-label {
        font-size: 10px;
        letter-spacing: 0.5px;
        margin-top: 4px;
    }

    .cs-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .cs-cta-content h2 {
        font-size: 28px;
    }
}


/* =============================================
   Single Product Page — Responsive Styles
   ============================================= */

/* --- Tablets (≤ 991px) --- */
@media (max-width: 991px) {
    .pd-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pd-gallery-main img {
        height: 420px;
    }

    .pd-info-title {
        font-size: 34px;
    }

    .pd-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pd-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pd-related-grid,
    .pd-recently-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pd-summary-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
    }

    .pd-faq-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pd-faq-heading h2 {
        font-size: 42px;
    }

    .pd-highlights-heading h2,
    .pd-related-heading h2,
    .pd-recently-heading h2,
    .pd-reviewform-heading h2 {
        font-size: 42px;
    }
}

/* --- Tablet Portrait (≤ 767px) --- */
@media (max-width: 767px) {
    .pd-gallery-main img {
        height: 360px;
    }

    .pd-info-title {
        font-size: 30px;
    }

    .pd-price-current {
        font-size: 28px;
    }

    .pd-info-actions {
        flex-wrap: wrap;
    }

    .pd-features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pd-tabs-nav {
        flex-direction: column;
        gap: 0;
    }

    .pd-tab-btn {
        text-align: left;
        border-radius: 0;
        border-bottom: 1px solid #eee;
    }

    .pd-tab-btn.active::after {
        bottom: 0;
        left: 0;
        right: auto;
        width: 3px;
        height: 100%;
        border-radius: 0 3px 3px 0;
    }

    .pd-highlights-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pd-related-grid,
    .pd-recently-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pd-reviewform-row {
        grid-template-columns: 1fr;
    }

    .pd-reviewform {
        padding: 28px;
    }

    .pd-highlights-heading h2,
    .pd-related-heading h2,
    .pd-recently-heading h2,
    .pd-reviewform-heading h2,
    .pd-faq-heading h2 {
        font-size: 36px;
    }

    .pd-cta-content h2 {
        font-size: 38px;
    }

    .pd-gallery-thumbs {
        gap: 10px;
    }

    .pd-thumb img {
        height: 70px;
    }
}

/* --- Mobile (≤ 575px) --- */
@media (max-width: 575px) {
    .pd-details-sec,
    .pd-tabs-sec,
    .pd-highlights-sec,
    .pd-related-sec,
    .pd-recently-sec,
    .pd-summary-sec,
    .pd-reviewform-sec,
    .pd-faq-sec {
        padding: 60px 0;
    }

    .pd-cta-sec {
        padding: 80px 0;
    }

    .pd-gallery-main img {
        height: 300px;
    }

    .pd-info-title {
        font-size: 28px;
    }

    .pd-price-current {
        font-size: 26px;
    }

    .pd-btn-cart,
    .pd-btn-buy {
        padding: 14px 24px;
        font-size: 14px;
    }

    .pd-btn-wishlist {
        width: 46px;
        height: 46px;
    }

    .pd-feature-item {
        padding: 20px 16px;
    }

    .pd-reviewform {
        padding: 24px;
    }

    .pd-summary-num {
        font-size: 52px;
    }

    .pd-faq-question {
        padding: 18px 20px;
    }

    .pd-faq-question h4 {
        font-size: 17px;
    }

    .pd-faq-answer p {
        padding: 0 20px 18px;
        font-size: 14px;
    }

    .pd-highlights-heading h2,
    .pd-related-heading h2,
    .pd-recently-heading h2,
    .pd-reviewform-heading h2 {
        font-size: 34px;
    }

    .pd-cta-content h2 {
        font-size: 34px;
    }
}

/* --- Very Small Mobile (≤ 399px) --- */
@media (max-width: 399px) {
    .pd-gallery-main img {
        height: 260px;
    }

    .pd-gallery-thumbs {
        gap: 8px;
    }

    .pd-thumb img {
        height: 56px;
    }

    .pd-info-title {
        font-size: 24px;
    }

    .pd-price-current {
        font-size: 24px;
    }

    .pd-qty-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .pd-info-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .pd-btn-cart,
    .pd-btn-buy {
        justify-content: center;
    }

    .pd-btn-wishlist {
        width: 100%;
        justify-content: center;
    }

    .pd-highlights-heading h2,
    .pd-related-heading h2,
    .pd-recently-heading h2,
    .pd-reviewform-heading h2,
    .pd-faq-heading h2 {
        font-size: 28px;
    }

    .pd-cta-content h2 {
        font-size: 28px;
    }

    .pd-reviewform {
        padding: 20px;
    }
}

/* =============================================
   Floating Notification – Responsive
   ============================================= */
@media (max-width: 991px) {
    .ct-notification-container {
        top: 16px;
        right: 16px;
        left: 16px;
    }

    .ct-notification {
        min-width: auto;
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .ct-notification {
        padding: 12px 14px;
        gap: 10px;
        border-radius: 14px;
    }

    .ct-notification-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 10px;
    }

    .ct-notification-title {
        font-size: 14px;
    }

    .ct-notification-product {
        font-size: 12px;
    }

    .ct-notification-thumb {
        width: 42px;
        height: 42px;
    }
}

/* =============================================
   Cart Page – Responsive
   ============================================= */
@media (max-width: 991px) {
    .ct-cart-sec,
    .ct-checkout-sec,
    .ct-wishlist-sec {
        padding: 60px 0;
    }

    .ct-cart-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .ct-cart-table thead {
        display: none;
    }

    .ct-cart-table tbody tr {
        display: block;
        padding: 20px;
        margin-bottom: 12px;
        background: var(--white-color);
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        border: none;
    }

    .ct-cart-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .ct-cart-table tbody td:last-child {
        border-bottom: none;
    }

    .ct-cart-table tbody td::before {
        content: attr(data-label);
        font-family: "butler";
        font-weight: 600;
        font-size: 14px;
        color: var(--primary-color);
        flex-shrink: 0;
        margin-right: 16px;
    }

    .ct-cart-product {
        padding: 0;
    }

    .ct-cart-product td::before {
        display: none;
    }

    .ct-cart-price,
    .ct-cart-total,
    .ct-cart-qty,
    .ct-cart-remove {
        padding: 0;
    }

    .ct-coupon-form {
        flex-direction: column;
    }

    .ct-cart-actions-row {
        justify-content: center;
    }

    .ct-checkout-grid {
        grid-template-columns: 1fr;
    }

    .ct-order-col {
        order: -1;
    }
}

@media (max-width: 575px) {
    .ct-cart-sec,
    .ct-checkout-sec,
    .ct-wishlist-sec {
        padding: 50px 0;
    }

    .ct-cart-product-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .ct-cart-product-img {
        width: 60px;
        height: 60px;
    }

    .ct-billing-card,
    .ct-coupon-card,
    .ct-summary-card,
    .ct-order-card,
    .ct-payment-card {
        padding: 24px;
    }

    .ct-billing-card h3,
    .ct-summary-card h3,
    .ct-order-card h3,
    .ct-payment-card h3 {
        font-size: 22px;
    }

    .ct-form-half,
    .ct-form-third {
        grid-template-columns: 1fr;
    }

    .ct-order-success-inner {
        padding: 36px 28px;
    }

    .ct-order-success-inner h3 {
        font-size: 24px;
    }
}

@media (max-width: 399px) {
    .ct-continue-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .ct-checkout-btn,
    .ct-place-order-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* =============================================
   Checkout Page – Responsive
   ============================================= */
@media (max-width: 991px) {
    .ct-checkout-grid {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .ct-form-half,
    .ct-form-third {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   Wishlist Page – Responsive
   ============================================= */
@media (max-width: 991px) {
    .ct-wishlist-table thead {
        display: none;
    }

    .ct-wishlist-table tbody tr {
        display: block;
        padding: 20px;
        margin-bottom: 12px;
        background: var(--white-color);
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        border: none;
    }

    .ct-wishlist-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .ct-wishlist-table tbody td:last-child {
        border-bottom: none;
    }

    .ct-wishlist-table tbody td::before {
        content: attr(data-label);
        font-family: "butler";
        font-weight: 600;
        font-size: 14px;
        color: var(--primary-color);
        flex-shrink: 0;
        margin-right: 16px;
    }

    .ct-wishlist-product {
        padding: 0;
    }

    .ct-wishlist-price,
    .ct-wishlist-stock,
    .ct-wishlist-cart,
    .ct-wishlist-remove {
        padding: 0;
    }
}

@media (max-width: 575px) {
    .ct-wishlist-product-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .ct-wishlist-product-img {
        width: 60px;
        height: 60px;
    }

    .ct-wishlist-cart-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* =============================================
   Legal Pages – Responsive Styles
   ============================================= */

/* --- Tablets / Small Desktops (≤ 991px) --- */
@media (max-width: 991px) {
    .lg-page-title {
        font-size: 44px;
    }

    .lg-page-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lg-toc-sidebar {
        position: static;
        order: -1;
    }

    .lg-toc-card {
        padding: 24px;
    }

    .lg-toc-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .lg-toc-link {
        padding: 8px 14px;
        font-size: 12px;
    }

    .lg-content-section {
        padding: 32px 30px;
    }

    .lg-section-header h3 {
        font-size: 22px;
    }

    .lg-section-number {
        font-size: 26px;
        min-width: 36px;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767px) {
    .lg-page-sec {
        padding: 50px 0 70px;
    }

    .lg-page-title {
        font-size: 36px;
    }

    .lg-page-intro {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .lg-content-section {
        padding: 28px 24px;
        margin-bottom: 18px;
    }

    .lg-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .lg-section-header h3 {
        font-size: 20px;
    }

    .lg-section-number {
        font-size: 24px;
    }

    .lg-section-body p {
        font-size: 14px;
    }
}

/* --- Small Mobile (≤ 575px) --- */
@media (max-width: 575px) {
    .lg-page-sec {
        padding: 40px 0 60px;
    }

    .lg-page-title {
        font-size: 30px;
    }

    .lg-toc-nav {
        flex-direction: column;
        gap: 2px;
    }

    .lg-toc-link {
        padding: 9px 12px;
        font-size: 13px;
    }

    .lg-content-section {
        padding: 24px 20px;
    }

    .lg-section-number {
        display: none;
    }
}

/* =============================================
   Testimonials Page – Responsive Styles
   ============================================= */

/* --- Tablets (≤ 991px) --- */
@media (max-width: 991px) {
    .tm-section-heading h2 {
        font-size: 42px;
    }

    .tm-intro-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .tm-intro-content {
        order: 1;
        text-align: center;
    }

    .tm-intro-content .primary-btn {
        margin-left: auto;
        margin-right: auto;
    }

    .tm-intro-img {
        order: 0;
        max-width: 500px;
        margin: 0 auto;
    }

    .tm-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tm-stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tm-stories-grid .tm-story-card:last-child {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0 auto;
    }

    .tm-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tm-love-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tm-review-heading h2,
    .tm-review-wrapper {
        max-width: 100%;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767px) {
    .tm-intro-sec,
    .tm-testimonials-sec,
    .tm-stories-sec,
    .tm-stats-sec,
    .tm-love-sec,
    .tm-review-sec {
        padding: 60px 0;
    }

    .tm-cta-sec {
        padding: 80px 0;
    }

    .tm-section-heading h2 {
        font-size: 36px;
    }

    .tm-intro-content h2 {
        font-size: 36px;
    }

    .tm-testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .tm-stories-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .tm-stories-grid .tm-story-card:last-child {
        max-width: 100%;
    }

    .tm-story-img img {
        height: 220px;
    }

    .tm-stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .tm-love-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .tm-review-form {
        gap: 20px;
    }

    .tm-review-row {
        grid-template-columns: 1fr;
    }

    .tm-review-heading {
        margin-bottom: 36px;
    }

    .tm-review-heading h2 {
        font-size: 36px;
    }

    .tm-rating-select {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .tm-cta-content h2 {
        font-size: 40px;
    }
}

/* --- Small Mobile (≤ 575px) --- */
@media (max-width: 575px) {
    .tm-intro-sec,
    .tm-testimonials-sec,
    .tm-stories-sec,
    .tm-stats-sec,
    .tm-love-sec,
    .tm-review-sec,
    .tm-cta-sec {
        padding: 50px 0;
    }

    .tm-section-heading h2,
    .tm-intro-content h2,
    .tm-review-heading h2 {
        font-size: 30px;
    }

    .tm-testimonial-card {
        padding: 26px 22px;
    }

    .tm-testimonial-info h4 {
        font-size: 16px;
    }

    .tm-story-content {
        padding: 22px 22px 26px;
    }

    .tm-story-content h4 {
        font-size: 20px;
    }

    .tm-stat-card,
    .tm-love-card {
        padding: 32px 22px;
    }

    .tm-stat-number {
        font-size: 36px;
    }

    .tm-love-card h4 {
        font-size: 20px;
    }

    .tm-review-group input,
    .tm-review-group textarea {
        padding: 14px 16px;
        font-size: 14px;
    }

    .tm-review-group label {
        font-size: 14px;
        top: 14px;
        left: 16px;
    }

    .tm-review-group input:focus ~ label,
    .tm-review-group input:not(:placeholder-shown) ~ label,
    .tm-review-group textarea:focus ~ label,
    .tm-review-group textarea:not(:placeholder-shown) ~ label {
        top: -10px;
        left: 12px;
        font-size: 11px;
    }

    .tm-review-submit .primary-btn a {
        padding: 14px 36px;
        font-size: 15px;
    }

    .tm-cta-content h2 {
        font-size: 30px;
    }
}


/* =============================================
   Event Details Page – Responsive
   ============================================= */

/* --- Tablets (≤ 991px) --- */
@media (max-width: 991px) {
    .ev-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ev-hero-content {
        order: 2;
        text-align: center;
    }

    .ev-hero-img {
        order: 1;
        max-height: 400px;
    }

    .ev-hero-meta {
        justify-content: center;
    }

    .ev-hero-btns {
        justify-content: center;
    }

    .ev-about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ev-about-content {
        text-align: center;
    }

    .ev-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ev-speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ev-speakers-grid .ev-speaker-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        justify-self: center;
    }

    .ev-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ev-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ev-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ev-related-grid .ev-related-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        justify-self: center;
    }
}

/* --- Tablets Portrait / Large Mobile (≤ 767px) --- */
@media (max-width: 767px) {
    .ev-hero-sec,
    .ev-about-sec,
    .ev-highlights-sec,
    .ev-schedule-sec,
    .ev-speakers-sec,
    .ev-gallery-sec,
    .ev-info-sec,
    .ev-related-sec,
    .ev-faq-sec {
        padding: 60px 0;
    }

    .ev-section-heading h2 {
        font-size: 36px;
    }

    .ev-hero-content h1 {
        font-size: 38px;
    }

    .ev-hero-meta {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .ev-hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .ev-highlights-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .ev-timeline::before {
        left: 28px;
    }

    .ev-timeline-dot {
        width: 56px;
        height: 56px;
    }
}