/* Global Ecommerce Components */
.luxe-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Home Section Styles */
.home-hero {
    padding: 0;
    margin-bottom: 10px;
}

.banner-slider {
    position: relative;
    height: 75vh;
    overflow: hidden;
}

.hero-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-frame.active {
    opacity: 1;
    z-index: 2;
}

.hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-meta {
    position: absolute;
    bottom: 15%;
    left: 5%;
    color: var(--bg);
    z-index: 10;
    transform: translateY(20px);
    transition: 0.8s;
    max-width: 600px;
}

.hero-frame.active .hero-meta {
    transform: translateY(0);
}

.meta-tag {
    display: block;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-meta h1 {
    font-size: 5vw;
    margin-bottom: 30px;
    line-height: 1;
    font-weight: 400;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-luxe {
    display: inline-block;
    padding: 18px 50px;
    background: var(--bg);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    transition: 0.3s;
}

.btn-luxe:hover {
    background: var(--primary);
    color: var(--bg);
}

.home-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--bg-alt);
    padding-bottom: 10px;
}

.home-section-head h2 {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text);
    margin: 0;
}

.view-all-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.view-all-link:hover {
    opacity: 0.6;
    transform: translateX(5px);
}

.view-all-link::after {
    content: '→';
    font-size: 1.1rem;
}

.home-categories {
    padding: 40px 0;
}

.category-visual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.cat-visual-item {
    text-decoration: none;
    color: inherit;
    text-align: center;
}

.cat-image-circle {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid var(--bg-alt);
    transition: 0.4s;
    background: var(--bg-alt);
}

.cat-visual-name {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.7rem;
    color: var(--text);
}

.home-section {
    padding: 25px 0;
}

.bg-lite {
    background-color: var(--bg-alt);
    padding: 30px 0;
}

/* Shop Page Styles */
.shop-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-top: 40px;
    padding-bottom: 80px;
}

.shop-sidebar {
    width: 250px;
    position: sticky;
    top: 110px;
    flex-shrink: 0;
}

.filter-section {
    margin-bottom: 40px;
}

.filter-section h3 {
    font-size: 0.7rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.9;
}

.sidebar-search {
    position: relative;
    margin-bottom: 10px;
}

.sidebar-search input {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    font-family: inherit;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.sidebar-search input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: none;
}

.sidebar-search button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
}

.cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cat-list li {
    margin-bottom: 10px;
}

.cat-list a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    padding: 5px 0;
    font-weight: 300;
}

.cat-list a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.cat-list a.active {
    color: var(--primary);
    font-weight: 500;
}

.price-input-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
    margin-bottom: 30px;
}

.p-input-box input {
    width: 100%;
    padding: 10px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    outline: none;
    font-weight: 400;
    color: var(--primary);
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.3s;
    text-align: center;
}

.apply-filters-btn {
    width: 100%;
    padding: 14px;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.4s ease;
}

.shop-main {
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0;
}

.shop-header-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
}

.shop-header-meta h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.2px;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--primary);
}

.results-count {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-filter-btn {
    position: fixed;
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    color: #fff;
    border: none;
    padding: 14px 34px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 1500;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-filter-drawer {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 6000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.mobile-filter-drawer.active {
    opacity: 1;
    pointer-events: auto;
}

.drawer-content {
    background: var(--bg);
    border-radius: 24px 24px 0 0;
    height: 85vh;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-filter-drawer.active .drawer-content {
    transform: translateY(0);
}

.drawer-handle {
    width: 45px;
    height: 5px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    margin: 15px auto 0;
}

.drawer-top {
    display: flex;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid var(--bg-alt);
    align-items: center;
}

.drawer-top h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.drawer-close {
    background: var(--bg-alt);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}

.drawer-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 30px 25px;
}

.drawer-bottom {
    padding: 20px 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--bg);
    padding-bottom: max(20px, env(safe-area-inset-bottom));
}

/* Product Details Styles */
.product-luxury-wrapper {
    background: var(--bg);
}

.breadcrumb-luxe {
    padding: 15px 0;
    border-bottom: 1px solid var(--bg-alt);
    margin-bottom: 30px;
}

.breadcrumb-luxe a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    transition: 0.3s;
}

.breadcrumb-luxe a:hover {
    color: var(--primary);
}

.breadcrumb-luxe span {
    color: var(--primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.product-main-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.gallery-layout-vertical {
    display: flex;
    gap: 20px;
}

.thumb-strip {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 80px;
}

.thumb-item {
    width: 80px;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.3s;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    -webkit-filter: grayscale(50%);
    filter: grayscale(50%);
}

.thumb-item.active {
    border-color: var(--primary);
}

.thumb-item.active img {
    opacity: 1;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.main-stage {
    flex-grow: 1;
    position: relative;
    aspect-ratio: 3/4;
    background: var(--bg-alt);
    overflow: hidden;
}

.main-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.luxe-badge-detail {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--primary);
    color: var(--bg);
    padding: 10px 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
}

.info-sticky {
    position: sticky;
    top: 120px;
}

.category-pre {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.7rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.product-title-luxe {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 12px;
    font-weight: 400;
    color: var(--text);
}

.pricing-luxe {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.current-price {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--primary);
}

.original-price {
    font-size: 1.4rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.discount-pill {
    background: var(--accent);
    color: var(--bg);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.short-desc {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.8;
}

.selection-group {
    margin-bottom: 30px;
}

.group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.group-header label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
}

.size-guide-link {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: underline;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.size-chips {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.size-chip {
    padding: 12px 25px;
    border: 1px solid var(--bg-alt);
    background: transparent;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.3s;
}

.size-chip.active {
    background: var(--primary);
    color: #fff !important;
    border-color: var(--primary);
}

.size-chip:hover:not(.active) {
    border-color: var(--primary);
}

.error-bubble {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 15px;
}

.purchase-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-atc,
.btn-buy,
.btn-whatsapp {
    padding: 18px 10px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    box-sizing: border-box;
    white-space: nowrap;
}

.btn-atc {
    background: transparent;
    border: 2.5px solid var(--primary);
    color: var(--primary);
}

.btn-atc:hover {
    background: var(--primary);
    color: #fff !important;
}

.btn-buy {
    background: var(--primary);
    color: #fff !important;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff !important;
    border: 2.5px solid #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
}

.product-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    padding: 20px 0;
    border-top: 1px solid var(--bg-alt);
    border-bottom: 1px solid var(--bg-alt);
}

.perk-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.perk-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

.perk-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Product Reviews Styling */
.product-reviews-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--bg-alt);
}

.reviews-summary-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--bg-alt);
}

.avg-score {
    font-size: 4rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.avg-stars {
    color: #f1c40f;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-count {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
}

.review-item-luxe {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--bg-alt);
    transition: 0.3s;
}

.review-item-luxe:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.reviewer-initial {
    width: 45px;
    height: 45px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
}

.reviewer-info strong {
    display: block;
    font-size: 0.95rem;
}

.review-stars-small {
    color: #f1c40f;
    font-size: 0.75rem;
    margin-top: 5px;
}

.review-date {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.review-body p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    opacity: 0.8;
}

.no-reviews {
    text-align: center;
    padding: 30px 0;
    color: var(--text-muted);
}

.no-reviews i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

/* Product Accordion */
.acc-item {
    border-bottom: 1px solid var(--bg-alt);
}

.acc-header {
    padding: 12px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
    color: var(--primary);
}

.acc-body {
    display: none;
    padding-bottom: 15px;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.5;
}

.acc-item.open .acc-body {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

.full-width-accordion {
    width: 100%;
    margin: 0 auto 30px;
}

.full-width-accordion .acc-header {
    font-size: 0.85rem;
    padding: 12px 0;
}

.full-width-accordion .acc-body {
    font-size: 1rem;
    line-height: 1.5;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.desc-content p {
    margin-bottom: 0px;
}

.desc-content p:empty {
    display: none;
}

.desc-content ul {
    padding-left: 20px;
    list-style-type: square;
    margin-bottom: 8px;
}

.desc-content ul li {
    margin-bottom: 4px;
}

/* Size Guide Modal Styles */
.luxe-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.luxe-modal.show {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
}

.modal-content.size-chart-modal {
    position: relative;
    width: 90%;
    max-width: 650px;
    background: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    background-image: linear-gradient(135deg, #fff 0%, #fdfbfb 100%);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #ccc;
    transition: 0.3s;
}

.modal-close:hover {
    color: #000;
}

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

.sc-logo {
    height: 40px;
    margin-bottom: 15px;
}

.sc-title {
    font-size: 3.2rem;
    font-weight: 400;
    color: #222;
    margin-bottom: 15px;
}

.sc-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 700;
}

.sc-subtitle span {
    width: 40px;
    height: 1px;
    background: #d4af37;
    opacity: 0.3;
}

.sc-table-container {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.sc-table {
    width: 100%;
    border-collapse: collapse;
}

.sc-table th {
    background: #1a1a1a;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    padding: 15px;
    font-weight: 600;
    text-align: center;
}

.sc-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #f8f8f8;
    font-size: 0.95rem;
    color: #444;
}

.sc-table tr:last-child td {
    border-bottom: none;
}

.sc-table tr:nth-child(even) {
    background: #fafafa;
}

.sc-table td:first-child {
    font-weight: 800;
    color: #000;
}

.sc-modal-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.sc-modal-footer p {
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.sc-modal-footer span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    color: #ccc;
}

/* Related Section */
.related-section {
    padding: 30px 0;
    border-top: 1px solid var(--bg-alt);
    background: var(--bg-alt);
}

.section-heading {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.sub-heading {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 400;
}

.view-all {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Contact Page Styles */
.contact-hero {
    background: var(--bg-alt);
    padding: 100px 0 60px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.contact-hero p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

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

.section-text {
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.info-items-grid {
    display: grid;
    gap: 35px;
}

.whatsapp-card {
    margin-top: 50px;
    padding: 30px;
    background: #25D366;
    border-radius: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whatsapp-card h4 {
    color: white;
    margin-bottom: 5px;
}

.contact-form-container {
    background: white;
    padding: 60px;
    border-radius: 5px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid #f5f5f5;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
    border-color: var(--accent) !important;
    background: white !important;
}

.map-container {
    height: 500px;
    width: 100%;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: 0.8;
}

/* Cart Page Styles */
.cart-page-refined {
    background-color: #f9fafb;
    min-height: 100vh;
    padding-top: 40px;
    color: #111827;
}

.cart-title-section {
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
}

.cart-count {
    color: #6b7280;
    font-size: 1rem;
    margin-top: 5px;
}

.cart-flex-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: flex-start;
}

.cart-items-main {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.items-list-header {
    display: grid;
    grid-template-columns: 1fr 150px 120px;
    padding: 20px 30px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
}

.cart-item-row {
    display: grid;
    grid-template-columns: 1fr 150px 120px;
    padding: 30px;
    border-bottom: 1px solid #f3f4f6;
    align-items: center;
}

.cart-item-row:last-child {
    border-bottom: none;
}

.item-product-info {
    display: flex;
    gap: 25px;
    align-items: center;
}

.item-img {
    width: 100px;
    height: 130px;
    border-radius: 8px;
    overflow: hidden;
    background: #f3f4f6;
}

.item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #111827;
}

.item-spec {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0 0 8px;
}

.item-spec span {
    font-weight: 700;
    color: #111827;
}

.item-price {
    font-weight: 600;
    font-size: 0.95rem;
    color: #374151;
    margin-bottom: 15px;
}

.btn-remove-text {
    background: none;
    border: none;
    padding: 0;
    color: #dc2626;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
}

.qty-stepper {
    display: flex;
    align-items: center;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 4px;
    width: fit-content;
}

.btn-step {
    width: 32px;
    height: 32px;
    border: none;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: 0.2s;
}

.btn-step:hover {
    background: #000;
    color: #fff;
}

.qty-number {
    min-width: 40px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
}

.row-total {
    font-weight: 800;
    font-size: 1.25rem;
    color: #111827;
    text-align: right;
}

.cart-footer-nav {
    padding: 30px;
    border-top: 1px solid #f3f4f6;
}

.btn-back-shopping {
    text-decoration: none;
    color: #4b5563;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
}

.sticky-summary {
    position: sticky;
    top: 120px;
}

.summary-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.summary-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f3f4f6;
}

.sum-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 500;
    color: #4b5563;
}

.text-free {
    color: #059669;
    font-weight: 700;
}

.total-highlight {
    padding: 20px 0;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 30px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-amount {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
}

.tax-hint {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 5px;
    text-align: right;
}

.btn-checkout-primary {
    display: block;
    width: 100%;
    padding: 18px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: 0.2s;
}

.safe-shopping-notice {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notice-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

.empty-cart-refined {
    text-align: center;
    padding: 100px 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.empty-icon-circle {
    width: 80px;
    height: 80px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #d1d5db;
}

.btn-primary-rect {
    display: inline-block;
    padding: 15px 40px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.2s;
}

/* Checkout Page Styles */
.checkout-refined {
    background-color: #f9fafb;
    min-height: 100vh;
    padding-top: 50px;
    color: #111827;
}

.checkout-header-simple {
    text-align: center;
    margin-bottom: 50px;
}

.checkout-header-simple h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
}

.checkout-grid-refined {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: flex-start;
}

.checkout-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.card-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.step-badge {
    width: 32px;
    height: 32px;
    background: #111827;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
}

.address-options-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.address-content {
    padding: 25px;
    border: 2px solid #f3f4f6;
    border-radius: 12px;
    height: 100%;
    transition: all 0.2s;
    position: relative;
}

.type-header {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.type-pill {
    background: #f3f4f6;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #6b7280;
}

.default-pill {
    background: #f0fdf4;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #059669;
}

.addr-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #374151;
}

.check-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.25rem;
    color: #f3f4f6;
    transition: 0.2s;
}

.address-label.active .address-content {
    border-color: #111827;
    background: #fafafa;
}

.address-label.active .check-icon {
    color: #2563eb;
}

.payment-radio-grid {
    display: grid;
    gap: 15px;
}

.payment-radio-content {
    padding: 25px;
    border: 2px solid #f3f4f6;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 50px 1fr 30px;
    gap: 20px;
    align-items: center;
    transition: 0.2s;
}

.pay-icon {
    font-size: 1.5rem;
    color: #9ca3af;
}

.pay-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.pay-check {
    font-size: 1.25rem;
    color: #f3f4f6;
    transition: 0.2s;
}

.payment-radio-label.active .payment-radio-content {
    border-color: #111827;
    background: #fafafa;
}

.payment-radio-label.active .pay-icon {
    color: #111827;
}

.payment-radio-label.active .pay-check {
    color: #059669;
}

.summary-card-refined {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 40px;
    position: sticky;
    top: 110px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.summary-head {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 30px;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 15px;
}

.mini-cart-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.mini-img img {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.mini-name {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
}

.mini-meta {
    display: block;
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 4px;
}

.mini-price {
    font-weight: 700;
    font-size: 0.95rem;
}

.summary-breakdown {
    border-top: 1px solid #f3f4f6;
    padding-top: 25px;
    margin-bottom: 35px;
}

.break-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: #6b7280;
    font-weight: 500;
}

.grand-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #111827;
}

.grand-total-row strong {
    font-size: 1.8rem;
    font-weight: 800;
}

.btn-order-finalize {
    width: 100%;
    padding: 20px;
    background: #111827;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.2s;
}

.trust-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 500;
}

.alert-danger-refined {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .container-fluid {
        padding: 0 25px;
    }

    .hero-meta {
        left: 40px;
        bottom: 10%;
    }

    .hero-meta h1 {
        font-size: 3rem;
    }

    .shop-container {
        flex-direction: column;
        margin-top: 20px;
        gap: 20px;
        padding: 0 15px 100px;
        width: 100%;
    }

    .shop-sidebar {
        display: none;
    }

    .shop-main {
        width: 100%;
        padding: 0;
    }

    .shop-header-meta {
        margin-bottom: 25px;
        padding-bottom: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .shop-header-meta h1 {
        font-size: 2.2rem;
    }

    .product-main-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-title-luxe {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .gallery-layout-vertical {
        flex-direction: column-reverse;
        gap: 15px;
    }

    .thumb-strip {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 5px;
        gap: 10px;
    }

    .thumb-item {
        width: 60px;
        flex-shrink: 0;
    }

    .main-stage {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .purchase-actions {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 10px;
        margin-top: 30px;
        margin-bottom: 40px;
        position: relative !important;
        width: 100%;
        padding: 0;
    }

    .purchase-actions>* {
        flex: 1;
        min-width: 0;
    }

    .purchase-actions .btn-whatsapp,
    .purchase-actions .btn-atc {
        padding: 16px 10px !important;
        font-size: 0.8rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .purchase-actions .wa-text {
        font-size: 0;
    }

    .purchase-actions .wa-text::before {
        content: "WhatsApp";
        font-size: 0.8rem;
    }

    .info-sticky {
        padding-bottom: 40px;
    }

    .product-perks {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }

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

    .cart-summary-sidebar {
        order: -1;
    }

    .sticky-summary {
        position: static;
    }

    .checkout-grid-refined {
        grid-template-columns: 1fr;
    }

    .checkout-side-col {
        order: -1;
    }
}

@media (max-width: 768px) {
    .banner-slider {
        height: 500px;
    }

    .hero-meta {
        left: 15px;
        bottom: 10%;
    }

    .hero-meta h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .btn-luxe {
        padding: 15px 40px;
    }

    .home-section-head h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }

    .home-full-grid {
        gap: 12px !important;
        margin-bottom: 20px !important;
    }

    .reviews-list {
        grid-template-columns: 1fr;
    }

    .modal-content.size-chart-modal {
        padding: 40px 20px;
    }

    .sc-title {
        font-size: 2rem;
    }

    .sc-table th,
    .sc-table td {
        padding: 10px 5px;
        font-size: 0.75rem;
    }

    .items-list-header {
        display: none;
    }

    .cart-item-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .item-product-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .item-qty-cell,
    .item-total-cell {
        border-left: 0;
        padding-left: 0;
        justify-content: space-between;
    }

    .item-total-cell {
        text-align: left;
    }

    .address-options-list {
        grid-template-columns: 1fr;
    }

    .checkout-card {
        padding: 25px;
    }
}