/*==================================================
  IronDesign Theme
  Main Stylesheet
==================================================*/

/*=========================
= Root Variables
=========================*/

:root {
    --color-primary: #ffffff;
    --color-secondary: #b8b8b8;
    --color-accent: #8B5CF6;
    --color-accent-light: #A78BFA;
    --color-success: #22C55E;
    --color-danger: #EF4444;
    
    --bg: #080808;
    --bg-secondary: #111111;
    --bg-card: #181818;
    
    --glass: rgba(255, 255, 255, .08);
    --glass-dark: rgba(15, 15, 18, .72);
    --glass-border: rgba(255, 255, 255, .08);
    --glass-shadow: 0 15px 50px rgba(0, 0, 0, .35);
    
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 32px;
    
    --transition: .35s ease;
    --container: 1450px;
}

/*=========================
= Custom Font
=========================*/

@font-face {
    font-family: 'YekanBakh';
    src: url('../fonts/YekanBakhFaNum-VF.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/*=========================
= Reset & Base
=========================*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg);
    color: #fff;
    font-family: 'YekanBakh', Inter, Vazirmatn, sans-serif;
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

svg {
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
}

input,
textarea,
select {
    font: inherit;
    outline: none;
}

/*=========================
= Background
=========================*/

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at top left, rgba(139, 92, 246, .12), transparent 35%),
        radial-gradient(circle at bottom right, rgba(59, 130, 246, .10), transparent 40%),
        linear-gradient(180deg, #080808, #101010, #080808);
}

/*=========================
= Selection & Scrollbar
=========================*/

::selection {
    background: #fff;
    color: #000;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #4a4a4a;
    border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
    background: #777;
}

/*=========================
= Container
=========================*/

.container {
    width: min(var(--container), calc(100% - 50px));
    margin-inline: auto;
}

/*=========================
= Sections
=========================*/

section {
    padding: 110px 0;
    position: relative;
}

/*=========================
= Typography
=========================*/

h1 {
    font-size: clamp(44px, 7vw, 82px);
    font-weight: 800;
    line-height: 1.1;
}

h2 {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.2;
}

h3 {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 600;
    line-height: 1.3;
}

h4 {
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 600;
}

p {
    color: var(--color-secondary);
    font-size: clamp(16px, 1.1vw, 18px);
}

/*=========================
= Utilities
=========================*/

.text-center { text-align: center; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.w-100 { width: 100%; }
.h-100 { height: 100%; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.gap-40 { gap: 40px; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 60px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 60px; }

.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.glow { box-shadow: 0 0 35px rgba(139, 92, 246, .18); }

/*=========================
= Glass Effects
=========================*/

.glass {
    background: var(--glass);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.glass-dark {
    background: var(--glass-dark);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, .08);
}

.glass-card {
    width: 100%;
    box-sizing: border-box;
    background: rgba(25, 25, 25, .45);
    backdrop-filter: blur(35px);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .30);
}

/*=========================
= Buttons
=========================*/

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 34px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    transition: all .35s ease;
    overflow: hidden;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #fff;
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, .18);
}

.btn-glass {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    backdrop-filter: blur(24px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, .14);
    transform: translateY(-4px);
}

/*=========================
= Animations
=========================*/

@keyframes shimmer {
    from { transform: translateX(-120%); }
    to { transform: translateX(120%); }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollDown {
    0% { transform: scaleY(0); opacity: 0; }
    50% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(0); opacity: 0; }
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
    transition: .8s ease;
}

/*==================================================
= Header
==================================================*/

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.header-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, .45);
    backdrop-filter: blur(35px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: all .4s ease;
}

.site-header.scrolled .header-backdrop {
    background: rgba(10, 10, 10, .85);
    backdrop-filter: blur(45px);
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    gap: 20px;
}

.site-logo {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.site-logo a {
    display: flex;
    align-items: center;
}

.site-logo h1 {
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 700;
    letter-spacing: .5px;
}

.primary-navigation {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.primary-menu li {
    position: relative;
}

.primary-menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    transition: all .35s ease;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
}

.primary-menu li a:hover {
    background: rgba(255, 255, 255, .08);
}

.primary-menu .current-menu-item a {
    background: rgba(255, 255, 255, .10);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
}

.header-icon:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .14);
}

.cart-button {
    position: relative;
}

.cart-count {
    position: absolute;
    right: -3px;
    top: -3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #EF4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 20px;
    transition: .35s;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/*==================================================
= Hero Section
==================================================*/

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 90px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(139, 92, 246, .20), transparent 35%),
        radial-gradient(circle at bottom left, rgba(59, 130, 246, .14), transparent 40%);
    pointer-events: none;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(24px) brightness(.35) saturate(130%);
    transform: scale(1.08);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.hero-content {
    width: 100%;
    max-width: 100%;
    z-index: 3;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #d8d8d8;
    margin-bottom: 22px;
    font-size: 14px;
}

.hero-title {
    margin-bottom: 22px;
}

.hero-description {
    max-width: 560px;
    margin-bottom: 38px;
    font-size: 18px;
    color: #c6c6c6;
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.hero-stat {
    flex: 1 1 150px;
    min-width: 120px;
    text-align: center;
    padding: 25px 30px;
    border-radius: 20px;
}

.hero-stat h2 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    line-height: 1.2;
}

.hero-stat p {
    margin-top: 8px;
    font-size: 14px;
    color: #888;
}

.hero-videos {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 24px;
}

.hero-video-column {
    display: grid;
    gap: 24px;
}

.hero-video {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.hero-video.large {
    aspect-ratio: 4/5;
}

.hero-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.hero-video:hover img {
    transform: scale(1.06);
}

.hero-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .65));
    pointer-events: none;
}

.video-caption {
    position: absolute;
    left: 25px;
    bottom: 22px;
    z-index: 2;
    color: #fff;
}

.video-caption h3 {
    font-size: 20px;
    font-weight: 600;
}

.video-caption h2 {
    font-size: 28px;
    font-weight: 700;
}

.video-caption p {
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
}

.video-play {
    position: absolute;
    right: 24px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(24px);
    z-index: 2;
    font-size: 24px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: .5;
}

.scroll-indicator span {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #fff, transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

/*==================================================
= Section Header
==================================================*/

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 30px;
}

.section-header > div {
    flex: 1;
}

.section-title {
    position: relative;
}

.section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: -18px;
    width: 90px;
    height: 5px;
    border-radius: 999px;
    background: var(--color-accent);
}

.section-subtitle {
    margin-top: 12px;
    max-width: 650px;
    color: var(--color-secondary);
}

/*==================================================
= Categories
==================================================*/

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    aspect-ratio: 3/4;
    transition: .45s;
}

.category-card:hover {
    transform: translateY(-8px);
}

.category-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.category-card:hover .category-image img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .82));
    pointer-events: none;
}

.category-content {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
}

.category-tag {
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(22px);
    margin-bottom: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
}

.category-title {
    font-size: 26px;
    margin-bottom: 10px;
    color: #fff;
}

.category-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, .7);
}

/*==================================================
= Products (WooCommerce)
==================================================*/

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none;
}

.irondesign-product-card {
    list-style: none;
}

.irondesign-product-card .product-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    transition: .35s ease;
}

.irondesign-product-card .product-card-inner:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, .18);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .15);
}

.irondesign-product-card .product-image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.irondesign-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}

.irondesign-product-card:hover .product-image img {
    transform: scale(1.08);
}

.irondesign-product-card .product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .4s ease;
    border-radius: 24px 24px 0 0;
}

.irondesign-product-card:hover .product-overlay {
    opacity: 1;
}

.irondesign-product-card .product-overlay-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 999px;
    transition: all .3s ease;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(4px);
}

.irondesign-product-card .product-overlay-text:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.irondesign-product-card .product-content {
    padding: 20px 20px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
}

.irondesign-product-card .product-rating {
    margin-bottom: 4px;
}

.irondesign-product-card .product-rating .star-rating {
    font-size: 13px;
    letter-spacing: 2px;
    color: #fbbf24;
}

.irondesign-product-card .product-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px 0;
    line-height: 1.4;
}

.irondesign-product-card .product-title a {
    color: #fff;
    text-decoration: none;
    transition: color .3s ease;
}

.irondesign-product-card .product-title a:hover {
    color: var(--color-accent-light);
}

.irondesign-product-card .product-price {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.irondesign-product-card .product-price del {
    color: #888;
    font-weight: 400;
    font-size: 14px;
}

.irondesign-product-card .product-price ins {
    text-decoration: none;
    color: #fff;
}

.irondesign-product-card .product-actions {
    margin-top: auto;
}

.irondesign-product-card .product-actions .button {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all .35s ease;
    backdrop-filter: blur(10px);
    display: block;
}

.irondesign-product-card .product-actions .button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, .15);
}

.irondesign-product-card .product-actions .added_to_cart {
    display: inline-block;
    margin-top: 8px;
    color: var(--color-accent-light);
    font-size: 13px;
}

.irondesign-product-card .onsale {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    padding: 4px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, .35);
}

/*==================================================
= Features
==================================================*/

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 40px 30px;
    text-align: center;
    border-radius: 30px;
    transition: .4s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 72px;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    font-size: 32px;
}

.feature-title {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 600;
}

.feature-description {
    color: var(--color-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/*==================================================
= Banner
==================================================*/

.banner-section {
    padding: 60px 0;
}

.banner {
    position: relative;
    overflow: hidden;
    border-radius: 38px;
    min-height: 550px;
}

.banner-media {
    width: 100%;
    height: 100%;
    min-height: 550px;
}

.banner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.45);
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, .20), rgba(0, 0, 0, .72));
    pointer-events: none;
}

.banner-content {
    position: absolute;
    left: clamp(30px, 5vw, 70px);
    bottom: clamp(30px, 5vw, 70px);
    max-width: min(600px, 90%);
    z-index: 2;
}

.banner-content h2 {
    margin-bottom: 20px;
}

.banner-content p {
    margin-bottom: 35px;
    max-width: 500px;
    color: rgba(255, 255, 255, .8);
}

/*==================================================
= Wholesale / Custom Order
==================================================*/

.wholesale-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 70px;
    border-radius: 40px;
}

.wholesale-content .section-title {
    margin-bottom: 15px;
}

.wholesale-content .section-subtitle {
    margin-bottom: 30px;
}

.wholesale-benefits {
    display: grid;
    gap: 18px;
    margin: 35px 0;
    list-style: none;
    padding: 0;
}

.wholesale-benefits li {
    font-size: 18px;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wholesale-benefits li::before {
    content: "✓";
    color: var(--color-accent);
    font-weight: 700;
}

.wholesale-image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 30px;
    object-fit: cover;
}

/*==================================================
= Newsletter / Consultation
==================================================*/

.newsletter-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 70px;
    border-radius: 40px;
}

.newsletter-content .section-title {
    margin-bottom: 15px;
}

.newsletter-content .section-subtitle {
    margin-bottom: 0;
}

.irondesign-newsletter-form {
    display: flex;
    gap: 16px;
    width: 100%;
}

.irondesign-newsletter-form input {
    flex: 1;
    min-height: 60px;
    padding: 16px 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
    transition: .35s;
}

.irondesign-newsletter-form input:focus {
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, .08);
}

.irondesign-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, .3);
}

.irondesign-newsletter-form button {
    white-space: nowrap;
    min-height: 60px;
}

/*==================================================
= Footer
==================================================*/

.site-footer {
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-wrapper {
    padding: 40px 35px;
    border-radius: 30px;
}

/* Compact Grid - 4 columns */
.footer-grid-compact {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
}

/* Brand */
.footer-logo {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    max-width: 320px;
    color: var(--color-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Social Icons - Compact */
.footer-social-compact {
    display: flex;
    gap: 12px;
}

.footer-social-compact a {
    color: var(--color-secondary);
    font-size: 13px;
    transition: .3s;
}

.footer-social-compact a:hover {
    color: #fff;
}

/* Footer Columns */
.footer-column h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
}

.footer-menu,
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-menu a,
.footer-info a,
.footer-info li {
    color: var(--color-secondary);
    font-size: 13px;
    transition: .3s;
    list-style: none;
}

.footer-menu a:hover,
.footer-info a:hover {
    color: #fff;
    padding-right: 4px;
}

.footer-info li {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    text-align: center;
    color: var(--color-secondary);
    font-size: 12px;
}

/* ===========================================
   Responsive Footer
   =========================================== */

@media (max-width: 992px) {
    .footer-grid-compact {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .footer-wrapper {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .footer-grid-compact {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer-wrapper {
        padding: 25px 20px;
    }

    .footer-logo {
        font-size: 22px;
    }

    .footer-description {
        font-size: 13px;
        max-width: 100%;
    }

    .footer-column h4 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-menu a,
    .footer-info a,
    .footer-info li {
        font-size: 12px;
    }

    .footer-social-compact {
        flex-wrap: wrap;
    }

    .site-footer {
        padding: 30px 0 15px;
        margin-top: 40px;
    }

    .footer-bottom {
        margin-top: 20px;
        padding-top: 14px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .footer-grid-compact {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .footer-wrapper {
        padding: 20px 15px;
        border-radius: 20px;
    }

    .footer-logo {
        font-size: 20px;
    }

    .footer-description {
        font-size: 12px;
    }

    .footer-column h4 {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .footer-menu,
    .footer-info {
        gap: 5px;
    }

    .footer-menu a,
    .footer-info a,
    .footer-info li {
        font-size: 11px;
    }

    .footer-social-compact a {
        font-size: 11px;
    }

    .footer-bottom {
        font-size: 10px;
        margin-top: 16px;
        padding-top: 12px;
    }

    .site-footer {
        padding: 20px 0 10px;
        margin-top: 30px;
    }
}
/*==================================================
= Single Product Page
==================================================*/

.single-product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 40px 0 80px;
}

.single-product-gallery {
    position: sticky;
    top: 100px;
    align-self: start;
}

.single-product-summary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.irondesign-product-header .product_title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.irondesign-product-price {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.irondesign-product-price .price {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.irondesign-product-price del {
    color: #888;
    font-size: 18px;
    font-weight: 400;
}

.irondesign-product-price ins {
    text-decoration: none;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.irondesign-product-rating {
    display: flex;
    align-items: center;
    gap: 16px;
}

.irondesign-product-rating .star-rating {
    font-size: 18px;
    color: #fbbf24;
}

.rating-summary {
    color: var(--color-secondary);
    font-size: 14px;
}

.irondesign-short-description {
    margin: 10px 0;
}

.product-short-description {
    color: var(--color-secondary);
    line-height: 1.8;
    font-size: 16px;
}

.irondesign-add-to-cart {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
}

.quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.quantity-wrapper label {
    font-weight: 600;
    color: #fff;
}

.quantity input.qty {
    width: 80px;
    height: 48px;
    text-align: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 16px;
}

.single_add_to_cart_button {
    min-height: 54px;
    font-size: 16px !important;
    padding: 0 40px !important;
}

.stock {
    font-weight: 600;
}

.stock.in-stock {
    color: #22c55e;
}

.stock.out-of-stock {
    color: #ef4444;
}

.product-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    color: var(--color-secondary);
    font-size: 14px;
}

.trust-icon {
    font-size: 20px;
}

.irondesign-product-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.meta-item {
    display: flex;
    gap: 8px;
    color: var(--color-secondary);
    font-size: 14px;
}

.meta-label {
    font-weight: 600;
    color: #fff;
    min-width: 90px;
}

/*==================================================
= Forms
==================================================*/

form {
    width: 100%;
}

input,
textarea,
select {
    width: 100%;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
    transition: .35s;
}

textarea {
    resize: vertical;
    min-height: 160px;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, .08);
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

/*==================================================
= Loading & Pagination
==================================================*/

.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, .25), transparent);
    animation: shimmer 1.4s infinite;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
}

.pagination a,
.pagination span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
}

.pagination a:hover,
.pagination .current {
    background: #fff;
    color: #000;
}

/*==================================================
= Breadcrumb
==================================================*/

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #999;
    margin-bottom: 35px;
}

.breadcrumb a:hover {
    color: #fff;
}

/*==================================================
= Coming Soon Page
==================================================*/

.coming-soon-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 20px 40px;
}

.coming-soon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6) saturate(1.1);
}

.coming-soon-glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.coming-soon-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 40px 20px;
    animation: fadeInUp 0.8s ease forwards;
}

.coming-soon-badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.coming-soon-title {
    font-size: clamp(52px, 10vw, 100px);
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #8b8b8b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.coming-soon-desc {
    font-size: clamp(18px, 2.5vw, 28px);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 10px;
}

.coming-soon-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    margin: 25px auto;
    border-radius: 10px;
}

.coming-soon-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 300;
}

/*==================================================
= Responsive
==================================================*/

/* Tablet */
@media (max-width: 1100px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-videos {
        grid-template-columns: 1fr;
    }
    
    .hero-video.large {
        aspect-ratio: 4/3;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .wholesale-wrapper,
    .newsletter-wrapper {
        grid-template-columns: 1fr;
        padding: 40px;
    }
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .primary-navigation {
        display: none;
        position: fixed;
        top: 78px;
        left: 0;
        width: 100%;
        height: calc(100vh - 78px);
        background: rgba(10, 10, 10, .95);
        backdrop-filter: blur(30px);
        padding: 30px 20px;
        overflow-y: auto;
        z-index: 9998;
    }
    
    .primary-navigation.active {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    
    .primary-menu {
        flex-direction: column;
        gap: 5px;
        width: 100%;
    }
    
    .primary-menu li a {
        padding: 16px 20px;
        width: 100%;
        justify-content: flex-start;
        border-radius: 14px;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .single-product-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .single-product-gallery {
        position: static;
    }
}

/* Small Mobile */
@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    
    .hero {
        min-height: auto;
        padding: 150px 0 80px;
    }
    
    .hero-content {
        width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-top: 30px;
        flex-wrap: nowrap;
    }

    .hero-stat {
        flex: none;
        min-width: auto;
        max-width: none;
        padding: 16px 10px;
        min-height: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-stat h2 {
        font-size: clamp(20px, 4vw, 28px) !important;
    }

    .hero-stat p {
        font-size: 11px;
        white-space: normal;
        margin-top: 2px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .category-card {
        aspect-ratio: 3/4;
        max-height: 300px;
    }

    .category-content {
        left: 16px;
        bottom: 16px;
    }

    .category-title {
        font-size: 18px;
    }

    .category-tag {
        font-size: 11px;
        padding: 4px 12px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .wholesale-wrapper,
    .newsletter-wrapper {
        padding: 30px 20px;
    }
    
    .irondesign-newsletter-form {
        flex-direction: column;
    }
    
    .irondesign-newsletter-form button {
        width: 100%;
    }
    
    .banner-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: 100%;
    }
    
    .banner-content h2 {
        font-size: 28px;
    }
    
    .footer-wrapper {
        padding: 35px 25px;
    }

    .product-trust-badges {
        grid-template-columns: 1fr;
    }

    .single-product-content {
        padding: 20px 0 40px;
    }

    .irondesign-product-price .price {
        font-size: 24px;
    }

    .quantity-wrapper {
        flex-wrap: wrap;
    }

    .irondesign-product-card .product-content {
        padding: 16px;
    }

    .irondesign-product-card .product-title {
        font-size: 14px;
    }

    .irondesign-product-card .product-price {
        font-size: 16px;
    }

    .irondesign-product-card .product-actions .button {
        padding: 10px 16px;
        font-size: 13px;
    }

    /* WooCommerce Header Fix */
    .woocommerce-page .site-main,
    .woocommerce.single-product .site-main,
    .woocommerce-shop .site-main {
        padding-top: 120px;
    }

    body.admin-bar.woocommerce-page .site-main,
    body.admin-bar.woocommerce.single-product .site-main,
    body.admin-bar.woocommerce-shop .site-main {
        padding-top: 166px;
    }
}

/* Extra Small Mobile */
@media (max-width: 576px) {
    .container {
        width: calc(100% - 24px);
    }
    
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .category-card {
        aspect-ratio: 4/3;
        max-height: 200px;
    }

    .category-content {
        left: 12px;
        bottom: 12px;
    }

    .category-title {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .category-tag {
        font-size: 10px;
        padding: 3px 10px;
        margin-bottom: 8px;
    }
    
    h1 {
        font-size: 42px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .banner {
        min-height: 400px;
    }
    
    .banner-media {
        min-height: 400px;
    }
    
    .wholesale-wrapper,
    .newsletter-wrapper {
        padding: 20px 15px;
        gap: 30px;
    }
    
    .wholesale-image img {
        min-height: 200px;
    }
    
    .header-actions .header-icon {
        width: 38px;
        height: 38px;
    }
    
    .site-logo h1 {
        font-size: 22px;
    }

    .irondesign-product-card .product-overlay {
        display: none;
    }

    .irondesign-product-card .product-content {
        padding: 14px;
    }

    .hero-stats {
        gap: 8px;
    }

    .hero-stat {
        padding: 12px 6px;
        min-height: 60px;
    }

    .hero-stat h2 {
        font-size: 18px !important;
    }

    .hero-stat p {
        font-size: 10px;
    }

    /* WooCommerce Header Fix - Admin Bar */
    body.admin-bar.woocommerce-page .site-main,
    body.admin-bar.woocommerce.single-product .site-main,
    body.admin-bar.woocommerce-shop .site-main {
        padding-top: 166px;
    }
}

/* Very Small Phones */
@media (max-width: 380px) {
    .categories-grid {
        gap: 10px;
    }

    .category-card {
        max-height: 150px;
        border-radius: 16px;
    }

    .category-title {
        font-size: 13px;
    }

    .category-tag {
        font-size: 8px;
        padding: 2px 8px;
    }

    .category-content p {
        font-size: 10px;
    }

    .category-content {
        left: 10px;
        bottom: 10px;
        width: calc(100% - 20px);
    }

    .coming-soon-title {
        font-size: 32px;
    }
    
    .coming-soon-desc {
        font-size: 16px;
    }
    
    .coming-soon-sub {
        font-size: 13px;
        letter-spacing: 4px;
    }
}

/* Admin Bar Fixes */
body.admin-bar.woocommerce-page .site-main,
body.admin-bar.woocommerce.single-product .site-main,
body.admin-bar.woocommerce-shop .site-main {
    padding-top: 152px;
}

@media screen and (max-width: 782px) {
    body.admin-bar.woocommerce-page .site-main,
    body.admin-bar.woocommerce.single-product .site-main,
    body.admin-bar.woocommerce-shop .site-main {
        padding-top: 166px;
    }
}

/* Utilities & Hover Effects */
.scale-hover { transition: .35s; }
.scale-hover:hover { transform: scale(1.04); }

.rotate-hover { transition: .4s; }
.rotate-hover:hover { transform: rotate(3deg); }

.shadow-hover { transition: .35s; }
.shadow-hover:hover { box-shadow: 0 25px 70px rgba(0, 0, 0, .35); }

/*==================================================
= Mobile Fix: Remove Hero Translation
==================================================*/

@media (max-width: 768px) {
    .hero {
        transform: none !important;
        padding-top: 90px !important;
        padding-bottom: 40px !important;
        min-height: auto !important;
        display: block !important;
        order: -1 !important;
        margin-bottom: 20px !important;
    }

    /* Fix hero background */
    .hero-background {
        position: absolute !important;
        inset: 0 !important;
        z-index: -1 !important;
    }

    .hero-background img {
        filter: blur(24px) brightness(.35) saturate(130%) !important;
        transform: scale(1.08) !important;
    }

    /* Fix hero container */
    .hero .container {
        display: block !important;
        position: relative !important;
        z-index: 2 !important;
    }

    /* Hero content */
    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px !important;
    }

    .hero-title {
        font-size: 32px !important;
        margin-bottom: 15px !important;
    }

    .hero-description {
        font-size: 15px !important;
        margin-bottom: 20px !important;
        max-width: 100% !important;
    }

    .hero-actions {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .hero-actions .btn {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Hero videos */
    .hero-videos {
        display: block !important;
        margin-top: 20px !important;
    }

    .hero-video-column {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        margin-bottom: 12px !important;
    }

    .hero-video {
        aspect-ratio: 4/3 !important;
        min-height: 100px !important;
        border-radius: 16px !important;
    }

    .hero-video.large {
        aspect-ratio: 16/9 !important;
        min-height: 150px !important;
    }

    .video-caption h3 {
        font-size: 14px !important;
    }

    .video-caption h2 {
        font-size: 18px !important;
    }

    .video-caption p {
        font-size: 12px !important;
    }

    .video-play {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
        right: 16px !important;
        bottom: 16px !important;
    }

    /* Hero stats */
    .hero-stats {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        margin-top: 20px !important;
    }

    .hero-stat {
        padding: 12px 6px !important;
        min-height: 60px !important;
        max-width: none !important;
        flex: none !important;
    }

    .hero-stat h2 {
        font-size: 18px !important;
    }

    .hero-stat p {
        font-size: 10px !important;
        white-space: normal !important;
    }

    /* Categories after hero */
    .product-categories {
        padding-top: 40px !important;
        margin-top: 0 !important;
        clear: both !important;
    }

    section {
        padding: 40px 0 !important;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .hero {
        padding-top: 80px !important;
        padding-bottom: 20px !important;
        margin-bottom: 10px !important;
    }

    .hero-title {
        font-size: 26px !important;
    }

    .hero-description {
        font-size: 13px !important;
    }

    .hero-subtitle {
        font-size: 11px !important;
        padding: 6px 12px !important;
    }

    .hero-video {
        min-height: 80px !important;
    }

    .hero-video.large {
        min-height: 120px !important;
    }

    .hero-stat {
        padding: 8px 4px !important;
        min-height: 50px !important;
    }

    .hero-stat h2 {
        font-size: 14px !important;
    }

    .hero-stat p {
        font-size: 8px !important;
    }

    .video-caption h3 {
        font-size: 12px !important;
    }

    .video-caption {
        left: 12px !important;
        bottom: 12px !important;
    }

    .video-play {
        width: 32px !important;
        height: 32px !important;
        font-size: 12px !important;
        right: 12px !important;
        bottom: 12px !important;
    }

    .product-categories {
        padding-top: 20px !important;
    }

    section {
        padding: 20px 0 !important;
    }
}
/* WooCommerce Pages - Clean Fix */
.woocommerce-page .site-main,
.single-product .site-main,
.woocommerce-account .site-main,
.woocommerce-cart .site-main,
.woocommerce-checkout .site-main {
    padding: 120px 20px 60px !important;
}

@media (max-width: 768px) {
    .woocommerce-page .site-main,
    .single-product .site-main,
    .woocommerce-account .site-main,
    .woocommerce-cart .site-main,
    .woocommerce-checkout .site-main {
        padding: 90px 15px 40px !important;
    }
}

@media (max-width: 480px) {
    .woocommerce-page .site-main,
    .single-product .site-main,
    .woocommerce-account .site-main,
    .woocommerce-cart .site-main,
    .woocommerce-checkout .site-main {
        padding: 80px 12px 30px !important;
    }
}
/*==================================================
= WooCommerce Pages - Modern Style
==================================================*/

/* ========== SHOP PAGE ========== */
.shop-header {
    padding: 40px 35px;
    margin-bottom: 40px;
    border-radius: 30px;
    text-align: center;
}

.shop-header-content {
    max-width: 700px;
    margin: 0 auto;
}

.shop-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin: 15px 0 10px;
    background: linear-gradient(135deg, #fff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shop-description {
    color: var(--color-secondary);
    font-size: 16px;
}

.woocommerce-ordering {
    margin: 20px 0;
}

.woocommerce-ordering select {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    padding: 10px 18px;
    color: #fff;
}

/* ========== SINGLE PRODUCT ========== */
.single-product-wrapper {
    padding: 40px 0;
}

.single-product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.single-product-gallery {
    padding: 24px;
    border-radius: 24px;
    position: sticky;
    top: 100px;
}

.single-product-summary {
    padding: 32px 35px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.single-product-summary .product_title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    margin: 0;
}

.single-product-summary .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-accent-light);
}

.single-product-summary .price del {
    color: #888;
    font-size: 18px;
    font-weight: 400;
    margin-right: 12px;
}

.single-product-summary .onsale {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    padding: 4px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
}

.product_meta {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    font-size: 14px;
    color: var(--color-secondary);
}

.product_meta span {
    display: block;
    margin-bottom: 4px;
}

/* ========== CART PAGE ========== */
.cart-wrapper {
    padding: 40px 35px;
    border-radius: 30px;
}

.cart-header {
    text-align: center;
    margin-bottom: 30px;
}

.cart-title {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-subtitle {
    color: var(--color-secondary);
    font-size: 15px;
}

.woocommerce-cart-form {
    overflow-x: auto;
}

.woocommerce-cart-form table.shop_table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, .03);
    border-radius: 16px;
    overflow: hidden;
}

.woocommerce-cart-form table.shop_table th {
    background: rgba(255, 255, 255, .06);
    padding: 14px 16px;
    text-align: right;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.woocommerce-cart-form table.shop_table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    vertical-align: middle;
}

.woocommerce-cart-form table.shop_table .product-thumbnail img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
}

.woocommerce-cart-form table.shop_table .product-name a {
    color: #fff;
    font-weight: 500;
}

.woocommerce-cart-form table.shop_table .product-remove a {
    color: #ef4444;
    font-size: 20px;
}

.cart_totals {
    margin-top: 30px;
    padding: 24px 30px;
    background: rgba(255, 255, 255, .03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .06);
}

.cart_totals h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

/* ========== CHECKOUT PAGE ========== */
.checkout-wrapper {
    padding: 40px 35px;
    border-radius: 30px;
}

.checkout-header {
    text-align: center;
    margin-bottom: 30px;
}

.checkout-title {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.checkout-subtitle {
    color: var(--color-secondary);
    font-size: 15px;
}

.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.woocommerce-checkout .form-row {
    margin-bottom: 16px;
}

.woocommerce-checkout .form-row label {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
}

.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus {
    border-color: var(--color-accent);
    outline: none;
}

/* ========== MY ACCOUNT ========== */
.account-wrapper {
    padding: 40px 35px;
    border-radius: 30px;
}

.account-header {
    text-align: center;
    margin-bottom: 30px;
}

.account-title {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.woocommerce-MyAccount-navigation ul {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 10px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .06);
    color: var(--color-secondary);
    font-size: 14px;
    transition: .3s;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.woocommerce-Addresses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.woocommerce-Address {
    padding: 20px 24px;
    background: rgba(255, 255, 255, .03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .06);
}

/* ========== LOGIN PAGE ========== */
.login-wrapper {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 35px;
    border-radius: 30px;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-subtitle {
    color: var(--color-secondary);
    font-size: 14px;
}

.woocommerce-form-login .form-row {
    margin-bottom: 16px;
}

.woocommerce-form-login .form-row label {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

.woocommerce-form-login .form-row input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
}

.woocommerce-form-login .form-row input:focus {
    border-color: var(--color-accent);
    outline: none;
}

.woocommerce-form-login .woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
    gap: 8px;
}

.woocommerce-form-login .woocommerce-form-login__rememberme input {
    width: auto;
}

.woocommerce-form-login .woocommerce-LostPassword a {
    color: var(--color-accent-light);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .single-product-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .single-product-gallery {
        position: static;
    }

    .woocommerce-Addresses {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .shop-header,
    .cart-wrapper,
    .checkout-wrapper,
    .account-wrapper,
    .login-wrapper {
        padding: 24px 18px;
    }

    .single-product-summary {
        padding: 24px 18px;
    }

    .single-product-gallery {
        padding: 16px;
    }

    .woocommerce-cart-form table.shop_table th,
    .woocommerce-cart-form table.shop_table td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .woocommerce-cart-form table.shop_table .product-thumbnail img {
        width: 40px;
        height: 40px;
    }

    .woocommerce-MyAccount-navigation ul {
        flex-direction: column;
    }

    .woocommerce-MyAccount-navigation ul li a {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .shop-header,
    .cart-wrapper,
    .checkout-wrapper,
    .account-wrapper,
    .login-wrapper {
        padding: 18px 14px;
    }

    .single-product-summary {
        padding: 18px 14px;
    }
}
/*==================================================
= Shop Filters
==================================================*/

.shop-filters {
    padding: 20px 30px;
    margin-bottom: 35px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Category Filter */
.filter-categories {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-label {
    color: var(--color-secondary);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.category-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cat-filter {
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    color: var(--color-secondary);
    font-size: 13px;
    transition: all .3s ease;
    white-space: nowrap;
}

.cat-filter .cat-count {
    font-size: 11px;
    color: var(--color-secondary);
    opacity: .6;
}

.cat-filter:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.cat-filter.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

.cat-filter.active .cat-count {
    color: rgba(255, 255, 255, .7);
}

/* Sort Options */
.filter-sort {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sort-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sort-option {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid transparent;
    color: var(--color-secondary);
    font-size: 13px;
    transition: all .3s ease;
    white-space: nowrap;
}

.sort-option:hover {
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

.sort-option.active {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .15);
    color: #fff;
}

/* ===========================================
   Shop Filters - Responsive
   =========================================== */

@media (max-width: 768px) {
    .shop-filters {
        padding: 16px 18px;
        gap: 14px;
    }

    .filter-categories {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .filter-sort {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .category-filter-list {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .category-filter-list::-webkit-scrollbar {
        display: none;
    }

    .cat-filter {
        flex-shrink: 0;
        font-size: 12px;
        padding: 5px 14px;
    }

    .sort-options {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .sort-option {
        font-size: 12px;
        padding: 5px 12px;
    }
}

@media (max-width: 480px) {
    .shop-filters {
        padding: 14px 14px;
    }

    .filter-label {
        font-size: 13px;
    }

    .cat-filter {
        font-size: 11px;
        padding: 4px 12px;
    }

    .sort-option {
        font-size: 11px;
        padding: 4px 10px;
    }

    .sort-options {
        gap: 4px;
    }
}
/*==================================================
= Shop - Compact Header & Filters
==================================================*/

/* Compact Shop Header */
.shop-header-compact {
    padding: 18px 30px;
    margin-bottom: 18px;
    border-radius: 20px;
    text-align: center;
}

.shop-header-compact .shop-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    margin: 6px 0 0;
    background: linear-gradient(135deg, #fff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shop-header-compact .hero-subtitle {
    font-size: 12px;
    padding: 4px 14px;
    margin-bottom: 4px;
}

/* Compact Shop Filters */
.shop-filters-compact {
    padding: 14px 24px;
    margin-bottom: 25px;
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

/* Category Filter */
.shop-filters-compact .filter-categories {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1;
}

.shop-filters-compact .filter-label {
    color: var(--color-secondary);
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.shop-filters-compact .category-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.shop-filters-compact .cat-filter {
    padding: 4px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    color: var(--color-secondary);
    font-size: 12px;
    transition: all .3s ease;
    white-space: nowrap;
}

.shop-filters-compact .cat-filter .cat-count {
    font-size: 10px;
    color: var(--color-secondary);
    opacity: .5;
}

.shop-filters-compact .cat-filter:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.shop-filters-compact .cat-filter.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

.shop-filters-compact .cat-filter.active .cat-count {
    color: rgba(255, 255, 255, .7);
}

/* Sort Options */
.shop-filters-compact .filter-sort {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.shop-filters-compact .sort-options {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.shop-filters-compact .sort-option {
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid transparent;
    color: var(--color-secondary);
    font-size: 12px;
    transition: all .3s ease;
    white-space: nowrap;
}

.shop-filters-compact .sort-option:hover {
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

.shop-filters-compact .sort-option.active {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .15);
    color: #fff;
}

/* ===========================================
   Responsive - Compact
   =========================================== */

@media (max-width: 992px) {
    .shop-filters-compact {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 14px 18px;
    }

    .shop-filters-compact .filter-categories {
        flex-wrap: wrap;
    }

    .shop-filters-compact .filter-sort {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .shop-header-compact {
        padding: 14px 18px;
        margin-bottom: 14px;
    }

    .shop-header-compact .shop-title {
        font-size: 22px;
    }

    .shop-filters-compact {
        padding: 12px 14px;
        border-radius: 14px;
    }

    .shop-filters-compact .filter-label {
        font-size: 11px;
    }

    .shop-filters-compact .cat-filter {
        font-size: 11px;
        padding: 3px 11px;
    }

    .shop-filters-compact .sort-option {
        font-size: 11px;
        padding: 3px 10px;
    }

    .shop-filters-compact .category-filter-list {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .shop-filters-compact .category-filter-list::-webkit-scrollbar {
        display: none;
    }

    .shop-filters-compact .cat-filter {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .shop-header-compact {
        padding: 10px 14px;
        margin-bottom: 10px;
        border-radius: 14px;
    }

    .shop-header-compact .shop-title {
        font-size: 18px;
    }

    .shop-filters-compact {
        padding: 10px 12px;
        border-radius: 12px;
    }

    .shop-filters-compact .cat-filter {
        font-size: 10px;
        padding: 3px 9px;
    }

    .shop-filters-compact .sort-option {
        font-size: 10px;
        padding: 3px 8px;
    }
}


/* ========================================
   THUMBNAIL SLIDER
   ======================================== */

.irondesign-thumbnail-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.irondesign-gallery-thumbnails {
    display: flex;
    gap: 10px;
    overflow: hidden;
    scroll-behavior: smooth;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

.irondesign-gallery-thumbnails .gallery-thumb {
    flex: 0 0 auto;
    width: 80px;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.irondesign-gallery-thumbnails .gallery-thumb img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    display: block;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.irondesign-gallery-thumbnails .gallery-thumb:hover img {
    border-color: rgba(139, 92, 246, 0.3);
}

.irondesign-gallery-thumbnails .gallery-thumb.active img {
    border-color: #8B5CF6;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

/* Slider Arrows */
.slider-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: #8B5CF6;
    border-color: #8B5CF6;
}

.slider-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Zoom Styles */
.irondesign-main-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: zoom-in;
}

.irondesign-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Zoom lens overlay */
.irondesign-main-image .zoomImg {
    cursor: zoom-out;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .irondesign-gallery-thumbnails .gallery-thumb {
        width: 60px;
    }
    
    .irondesign-gallery-thumbnails .gallery-thumb img {
        width: 60px;
        height: 60px;
    }
    
    .slider-arrow {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .irondesign-gallery-thumbnails .gallery-thumb {
        width: 50px;
    }
    
    .irondesign-gallery-thumbnails .gallery-thumb img {
        width: 50px;
        height: 50px;
    }
}

/* ========================================
   PURE CSS ZOOM - Add this to your CSS
   ======================================== */

.irondesign-main-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: zoom-in;
}

.irondesign-main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center center;
}

/* Zoom on hover */
.irondesign-main-image:hover img {
    transform: scale(2);
    cursor: zoom-out;
}

/* Zoom indicator icon */
.irondesign-main-image::after {
    content: '🔍';
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(5px);
    z-index: 10;
    font-family: Arial, sans-serif;
}

.irondesign-main-image:hover::after {
    opacity: 1;
}

/* Responsive - smaller zoom on mobile */
@media (max-width: 768px) {
    .irondesign-main-image:hover img {
        transform: scale(1.5);
    }
}

/* Optional: Smooth zoom with mouse position */
.irondesign-main-image {
    overflow: hidden;
}

/* This makes the zoom follow your mouse */
.irondesign-main-image:hover img {
    transform-origin: center center;
    transform: scale(2);
}

/* Disable zoom on very small screens */
@media (max-width: 480px) {
    .irondesign-main-image:hover img {
        transform: scale(1.3);
    }
}

/* ============================================
   Product Tabs
   ============================================ */

.irondesign-product-tabs {
    padding: 35px 40px;
    margin: 30px 0 20px;
    border-radius: 24px;
}

.tabs-nav {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0;
    margin-bottom: 30px;
    list-style: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tab-item {
    margin: 0;
}

.tab-link {
    display: block;
    padding: 12px 24px;
    border-radius: 12px 12px 0 0;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.tab-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.tab-item.active .tab-link {
    color: #fff;
    border-bottom-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.05);
}

.tab-panel {
    display: none;
    padding: 10px 0;
    animation: fadeInUp 0.4s ease;
}

.tab-panel.active {
    display: block;
}

.tab-panel p {
    margin-bottom: 16px;
    color: var(--color-secondary);
    line-height: 1.9;
}

.tab-panel h2,
.tab-panel h3,
.tab-panel h4 {
    margin: 24px 0 12px;
    color: #fff;
}

.tab-panel ul,
.tab-panel ol {
    padding-right: 24px;
    margin-bottom: 16px;
}

.tab-panel li {
    margin-bottom: 8px;
    color: var(--color-secondary);
}

/* Attributes Table */
.woocommerce-product-attributes {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-product-attributes th,
.woocommerce-product-attributes td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: right;
}

.woocommerce-product-attributes th {
    font-weight: 600;
    color: #fff;
    width: 30%;
}

.woocommerce-product-attributes td {
    color: var(--color-secondary);
}

/* Reviews */
#reviews {
    margin-top: 10px;
}

#reviews .woocommerce-Reviews-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

#reviews .commentlist {
    list-style: none;
    padding: 0;
}

#reviews .commentlist li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#reviews .comment-text {
    margin-top: 10px;
}

#reviews .comment-text .star-rating {
    color: #fbbf24;
    margin-bottom: 8px;
}

#reviews .comment-text .description {
    color: var(--color-secondary);
    line-height: 1.8;
}

#review_form .comment-form {
    display: grid;
    gap: 16px;
}

#review_form .comment-form label {
    color: #fff;
    font-weight: 500;
}

#review_form .comment-form input,
#review_form .comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

#review_form .comment-form input:focus,
#review_form .comment-form textarea:focus {
    border-color: var(--color-accent);
    outline: none;
}

#review_form .comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Responsive */
@media (max-width: 768px) {
    .irondesign-product-tabs {
        padding: 20px 18px;
    }

    .tab-link {
        padding: 10px 16px;
        font-size: 13px;
    }

    .tabs-nav {
        gap: 4px;
    }

    .woocommerce-product-attributes th,
    .woocommerce-product-attributes td {
        padding: 8px 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .irondesign-product-tabs {
        padding: 16px 14px;
    }

    .tab-link {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* ============================================
   Product Tabs
   ============================================ */

.irondesign-product-tabs {
    padding: 35px 40px;
    margin: 40px 0 20px;
    border-radius: 24px;
}

.tabs-nav {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0;
    margin-bottom: 30px;
    list-style: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tab-item {
    margin: 0;
}

.tab-link {
    display: block;
    padding: 12px 24px;
    border-radius: 12px 12px 0 0;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}

.tab-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.tab-item.active .tab-link {
    color: #fff;
    border-bottom-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.05);
}

.tab-panel {
    display: none;
    padding: 10px 0;
    animation: fadeInUp 0.4s ease;
}

.tab-panel.active {
    display: block;
}

.tab-panel p {
    margin-bottom: 16px;
    color: var(--color-secondary);
    line-height: 1.9;
}

.tab-panel h2,
.tab-panel h3,
.tab-panel h4 {
    margin: 24px 0 12px;
    color: #fff;
}

.tab-panel ul,
.tab-panel ol {
    padding-right: 24px;
    margin-bottom: 16px;
}

.tab-panel li {
    margin-bottom: 8px;
    color: var(--color-secondary);
}

/* Attributes Table */
.woocommerce-product-attributes {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-product-attributes tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.woocommerce-product-attributes th,
.woocommerce-product-attributes td {
    padding: 14px 16px;
    text-align: right;
}

.woocommerce-product-attributes th {
    font-weight: 600;
    color: #fff;
    width: 30%;
}

.woocommerce-product-attributes td {
    color: var(--color-secondary);
}

/* Reviews */
#reviews {
    margin-top: 10px;
}

#reviews .woocommerce-Reviews-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

#reviews .commentlist {
    list-style: none;
    padding: 0;
}

#reviews .commentlist li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#reviews .comment-text {
    margin-top: 10px;
}

#reviews .comment-text .star-rating {
    color: #fbbf24;
    margin-bottom: 8px;
}

#reviews .comment-text .description {
    color: var(--color-secondary);
    line-height: 1.8;
}

#review_form .comment-form {
    display: grid;
    gap: 16px;
}

#review_form .comment-form label {
    color: #fff;
    font-weight: 500;
}

#review_form .comment-form input,
#review_form .comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

#review_form .comment-form input:focus,
#review_form .comment-form textarea:focus {
    border-color: var(--color-accent);
    outline: none;
}

#review_form .comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Responsive */
@media (max-width: 768px) {
    .irondesign-product-tabs {
        padding: 20px 18px;
    }

    .tab-link {
        padding: 10px 16px;
        font-size: 13px;
    }

    .tabs-nav {
        gap: 4px;
    }

    .woocommerce-product-attributes th,
    .woocommerce-product-attributes td {
        padding: 10px 12px;
        font-size: 14px;
    }

    .woocommerce-product-attributes th {
        width: 40%;
    }
}

@media (max-width: 480px) {
    .irondesign-product-tabs {
        padding: 16px 14px;
    }

    .tab-link {
        padding: 8px 12px;
        font-size: 12px;
    }

    .woocommerce-product-attributes th,
    .woocommerce-product-attributes td {
        padding: 8px 10px;
        font-size: 13px;
    }
}

