/*
Theme Name: DT Smart
Theme URI: https://dtsmart.ir
Author: حسین سوری
Author URI: https://hsoury.ir
Description: قالب اختصاصی فروشگاه دوربین مداربسته و تجهیزات امنیتی DT SMART - ساخته شده توسط مهرگستران تابش
Version: 1.3.3
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Proprietary - All Rights Reserved
License URI: https://dtsmart.ir/license
Text Domain: dt-smart
Domain Path: /languages
Tags: e-commerce, woocommerce, rtl, persian, security, camera, custom-admin-panel

DT SMART WordPress Theme
Copyright (C) 2026 مهرگستران تابش (mgtco.ir)
Developer: حسین سوری (hsoury.ir)

This theme is proprietary and built exclusively for dtsmart.ir.
Unauthorized copying, distribution, or modification of this theme is strictly prohibited.
*/

/* ============================================
   CSS Custom Properties (Design Tokens)
   ============================================ */
:root {
    /* Colors */
    --dt-primary: #0A2342;
    --dt-primary-light: #1a3a5c;
    --dt-primary-dark: #061628;
    --dt-secondary: #FDB515;
    --dt-secondary-light: #fdc94e;
    --dt-secondary-dark: #e0a00e;
    --dt-bg: #F8FAFC;
    --dt-bg-alt: #FFFFFF;
    --dt-text-dark: #1E293B;
    --dt-text-gray: #64748B;
    --dt-text-light: #94A3B8;
    --dt-white: #FFFFFF;
    --dt-border: #E2E8F0;
    --dt-success: #22C55E;
    --dt-danger: #EF4444;
    --dt-warning: #F59E0B;

    /* Gradients */
    --dt-gradient-primary: linear-gradient(135deg, var(--dt-primary) 0%, var(--dt-primary-light) 100%);
    --dt-gradient-secondary: linear-gradient(135deg, var(--dt-secondary) 0%, var(--dt-secondary-light) 100%);
    --dt-gradient-dark: linear-gradient(135deg, #0f172a 0%, var(--dt-primary) 100%);

    /* Typography */
    --dt-font-family: 'B Yekan', Tahoma, Arial, sans-serif;
    --dt-font-size-xs: 0.75rem;
    --dt-font-size-sm: 0.875rem;
    --dt-font-size-base: 1rem;
    --dt-font-size-lg: 1.125rem;
    --dt-font-size-xl: 1.25rem;
    --dt-font-size-2xl: 1.5rem;
    --dt-font-size-3xl: 1.875rem;
    --dt-font-size-4xl: 2.25rem;
    --dt-font-size-5xl: 3rem;

    /* Spacing */
    --dt-space-xs: 0.25rem;
    --dt-space-sm: 0.5rem;
    --dt-space-md: 1rem;
    --dt-space-lg: 1.5rem;
    --dt-space-xl: 2rem;
    --dt-space-2xl: 3rem;
    --dt-space-3xl: 4rem;
    --dt-space-4xl: 6rem;

    /* Border Radius */
    --dt-radius-sm: 4px;
    --dt-radius-md: 8px;
    --dt-radius-lg: 12px;
    --dt-radius-xl: 16px;
    --dt-radius-2xl: 24px;
    --dt-radius-full: 9999px;

    /* Shadows */
    --dt-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --dt-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --dt-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --dt-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --dt-shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --dt-shadow-glow: 0 0 20px rgba(253, 181, 21, 0.3);

    /* Transitions */
    --dt-transition-fast: 150ms ease;
    --dt-transition-base: 300ms ease;
    --dt-transition-slow: 500ms ease;

    /* Container */
    --dt-container-max: 1280px;
    --dt-container-padding: 1rem;

    /* Header */
    --dt-header-height: 120px;
    --dt-topbar-height: 40px;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--dt-font-family);
    font-size: var(--dt-font-size-base);
    line-height: 1.6;
    color: var(--dt-text-dark);
    background-color: var(--dt-bg);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--dt-transition-fast);
}

a:hover {
    color: var(--dt-secondary);
}

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dt-text-dark);
}

h1 { font-size: var(--dt-font-size-5xl); }
h2 { font-size: var(--dt-font-size-4xl); }
h3 { font-size: var(--dt-font-size-3xl); }
h4 { font-size: var(--dt-font-size-2xl); }
h5 { font-size: var(--dt-font-size-xl); }
h6 { font-size: var(--dt-font-size-lg); }

p {
    margin-bottom: var(--dt-space-md);
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
    max-width: var(--dt-container-max);
    margin-inline: auto;
    padding-inline: var(--dt-container-padding);
}

.section {
    padding-block: var(--dt-space-4xl);
}

.section-title {
    font-size: var(--dt-font-size-3xl);
    font-weight: 700;
    color: var(--dt-text-dark);
    margin-bottom: var(--dt-space-3xl);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 60px;
    height: 4px;
    background: var(--dt-secondary);
    border-radius: var(--dt-radius-full);
}

.section-subtitle {
    font-size: var(--dt-font-size-lg);
    color: var(--dt-text-gray);
    margin-top: var(--dt-space-lg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--dt-space-sm);
    padding: 12px 28px;
    font-family: var(--dt-font-family);
    font-size: var(--dt-font-size-base);
    font-weight: 600;
    border: none;
    border-radius: var(--dt-radius-lg);
    cursor: pointer;
    transition: all var(--dt-transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--dt-secondary);
    color: var(--dt-primary);
}

.btn-primary:hover {
    background: var(--dt-secondary-light);
    transform: translateY(-2px);
    box-shadow: var(--dt-shadow-glow);
    color: var(--dt-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--dt-white);
    border: 2px solid var(--dt-white);
}

.btn-secondary:hover {
    background: var(--dt-white);
    color: var(--dt-primary);
}

.btn-outline {
    background: transparent;
    color: var(--dt-primary);
    border: 2px solid var(--dt-primary);
}

.btn-outline:hover {
    background: var(--dt-primary);
    color: var(--dt-white);
}

.btn-dark {
    background: var(--dt-primary);
    color: var(--dt-white);
}

.btn-dark:hover {
    background: var(--dt-primary-light);
    transform: translateY(-2px);
    color: var(--dt-white);
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--dt-space-xl);
}

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

/* ============================================
   Top Bar
   ============================================ */
.dt-topbar {
    background: var(--dt-primary);
    color: var(--dt-white);
    font-size: var(--dt-font-size-sm);
    padding-block: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dt-topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dt-topbar-right,
.dt-topbar-left {
    display: flex;
    align-items: center;
    gap: var(--dt-space-xl);
}

.dt-topbar-item {
    display: flex;
    align-items: center;
    gap: var(--dt-space-sm);
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--dt-transition-fast);
}

.dt-topbar-item:hover {
    color: var(--dt-secondary);
}

.dt-topbar-item i {
    font-size: var(--dt-font-size-lg);
    color: var(--dt-secondary);
}

/* ============================================
   Header
   ============================================ */
.dt-header {
    background: var(--dt-white);
    box-shadow: var(--dt-shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.dt-header-main {
    padding-block: var(--dt-space-md);
}

.dt-header-main .container {
    display: flex;
    align-items: center;
    gap: var(--dt-space-2xl);
}

.dt-logo {
    flex-shrink: 0;
}

.dt-logo img {
    height: 50px;
    width: auto;
}

.dt-logo-text {
    font-size: var(--dt-font-size-2xl);
    font-weight: 800;
    color: var(--dt-primary);
}

.dt-logo-text span {
    color: var(--dt-secondary);
}

/* Search Bar */
.dt-search-bar {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.dt-search-bar form {
    display: flex;
    background: var(--dt-bg);
    border: 2px solid var(--dt-border);
    border-radius: var(--dt-radius-xl);
    overflow: hidden;
    transition: border-color var(--dt-transition-fast);
}

.dt-search-bar form:focus-within {
    border-color: var(--dt-secondary);
}

.dt-search-bar input[type="search"] {
    flex: 1;
    padding: 12px 20px;
    font-family: var(--dt-font-family);
    font-size: var(--dt-font-size-base);
    border: none;
    background: transparent;
    outline: none;
    direction: rtl;
}

.dt-search-bar select {
    padding: 12px 16px;
    font-family: var(--dt-font-family);
    font-size: var(--dt-font-size-sm);
    border: none;
    border-inline-start: 1px solid var(--dt-border);
    background: var(--dt-white);
    outline: none;
    cursor: pointer;
    color: var(--dt-text-gray);
}

.dt-search-bar button {
    padding: 12px 20px;
    background: var(--dt-secondary);
    border: none;
    cursor: pointer;
    color: var(--dt-primary);
    font-size: var(--dt-font-size-lg);
    transition: background var(--dt-transition-fast);
}

.dt-search-bar button:hover {
    background: var(--dt-secondary-light);
}

/* Header Actions */
.dt-header-actions {
    display: flex;
    align-items: center;
    gap: var(--dt-space-lg);
}

.dt-header-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--dt-text-dark);
    font-size: var(--dt-font-size-xs);
    transition: color var(--dt-transition-fast);
    position: relative;
}

.dt-header-action:hover {
    color: var(--dt-secondary);
}

.dt-header-action i {
    font-size: 22px;
}

.dt-header-action .badge {
    position: absolute;
    top: -4px;
    inset-inline-end: -4px;
    background: var(--dt-secondary);
    color: var(--dt-primary);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   Navigation / Main Menu
   ============================================ */
.dt-navigation {
    background: var(--dt-white);
    border-top: 1px solid var(--dt-border);
}

.dt-nav-menu {
    display: flex;
    align-items: center;
}

.dt-nav-item,
#dt-main-menu > li {
    position: relative;
}

.dt-nav-link,
#dt-main-menu > li > a {
    display: flex;
    align-items: center;
    gap: var(--dt-space-xs);
    padding: 16px 20px;
    font-size: var(--dt-font-size-sm);
    font-weight: 500;
    color: var(--dt-text-dark);
    transition: all var(--dt-transition-fast);
    border-bottom: 2px solid transparent;
}

.dt-nav-link:hover,
.dt-nav-item:hover > .dt-nav-link,
#dt-main-menu > li > a:hover,
#dt-main-menu > li:hover > a {
    color: var(--dt-secondary);
    border-bottom-color: var(--dt-secondary);
}

/* Arrow for items with sub-menu */
#dt-main-menu > li.menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 6px;
    margin-left: 0;
    font-size: 11px;
    transition: transform 0.3s ease;
}

#dt-main-menu > li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Sub-menu alignment: right edge of parent */
#dt-main-menu .sub-menu {
    right: 0 !important;
    left: auto !important;
}

.dt-nav-item .dt-mega-menu,
#dt-main-menu .dt-mega-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 700px;
    background: var(--dt-white);
    box-shadow: var(--dt-shadow-xl);
    border-radius: 0 0 var(--dt-radius-lg) var(--dt-radius-lg);
    padding: var(--dt-space-xl);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--dt-space-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--dt-transition-base);
    z-index: 100;
}

.dt-nav-item:hover > .dt-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* WordPress Sub-Menu */
#dt-main-menu .sub-menu {
    position: absolute;
    top: 100%;
    min-width: 220px;
    background: var(--dt-white);
    box-shadow: var(--dt-shadow-xl);
    border-radius: 0 0 var(--dt-radius-lg) var(--dt-radius-lg);
    padding: var(--dt-space-sm) 0;
    padding-top: 10px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--dt-transition-base);
    z-index: 100;
}

#dt-main-menu > li:hover > .sub-menu,
#dt-main-menu > li.active > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#dt-main-menu .sub-menu li {
    list-style: none;
}

#dt-main-menu .sub-menu li a {
    display: block;
    padding: 10px 24px;
    font-size: var(--dt-font-size-sm);
    color: var(--dt-text-dark);
    transition: all var(--dt-transition-fast);
    white-space: nowrap;
}

#dt-main-menu .sub-menu li a:hover {
    background: var(--dt-bg-light);
    color: var(--dt-secondary);
    padding-right: 30px;
}

.dt-mega-menu-title {
    font-size: var(--dt-font-size-base);
    font-weight: 700;
    color: var(--dt-primary);
    margin-bottom: var(--dt-space-md);
    padding-bottom: var(--dt-space-sm);
    border-bottom: 2px solid var(--dt-secondary);
}

.dt-mega-menu-link {
    display: block;
    padding: 6px 0;
    font-size: var(--dt-font-size-sm);
    color: var(--dt-text-gray);
    transition: color var(--dt-transition-fast);
}

.dt-mega-menu-link:hover {
    color: var(--dt-secondary);
    padding-inline-start: 8px;
}

/* ============================================
   Hero Section
   ============================================ */
.dt-hero {
    background: var(--dt-gradient-dark);
    min-height: 580px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.dt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.dt-hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--dt-space-3xl);
    align-items: center;
}

.dt-hero-content {
    color: var(--dt-white);
}

.dt-hero-badge {
    display: inline-block;
    background: rgba(253, 181, 21, 0.2);
    color: var(--dt-secondary);
    padding: 8px 20px;
    border-radius: var(--dt-radius-full);
    font-size: var(--dt-font-size-sm);
    font-weight: 600;
    margin-bottom: var(--dt-space-xl);
    border: 1px solid rgba(253, 181, 21, 0.3);
}

.dt-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dt-white);
    margin-bottom: var(--dt-space-lg);
    line-height: 1.2;
}

.dt-hero-title span {
    color: var(--dt-secondary);
}

.dt-hero-subtitle {
    font-size: var(--dt-font-size-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--dt-space-2xl);
    line-height: 1.8;
}

.dt-hero-buttons {
    display: flex;
    gap: var(--dt-space-md);
    flex-wrap: wrap;
}

.dt-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dt-hero-image img {
    max-width: 450px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.dt-hero-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--dt-radius-lg);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: var(--dt-space-sm);
    color: var(--dt-white);
    font-size: var(--dt-font-size-sm);
    animation: float 3s ease-in-out infinite;
}

.dt-hero-float i {
    color: var(--dt-secondary);
    font-size: var(--dt-font-size-xl);
}

.dt-hero-float:nth-child(1) { top: 10%; right: -10%; animation-delay: 0s; }
.dt-hero-float:nth-child(2) { top: 50%; left: -5%; animation-delay: 0.5s; }
.dt-hero-float:nth-child(3) { bottom: 20%; right: 0; animation-delay: 1s; }
.dt-hero-float:nth-child(4) { bottom: 5%; left: 10%; animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   Hero Modes
   ============================================ */

/* Text-only mode */
.dt-hero-mode-text .dt-hero-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

/* Image-only mode (slider) */
.dt-hero-mode-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.dt-hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.dt-hero-slides-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease;
}

.dt-hero-slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.dt-hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(10, 35, 66, 0.85), rgba(10, 35, 66, 0.4));
}

.dt-hero-slide-content {
    position: relative;
    z-index: 1;
    color: var(--dt-white);
    max-width: 600px;
}

.dt-hero-slide-content .dt-hero-title {
    color: var(--dt-white);
}

.dt-hero-slide-content .dt-hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.dt-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--dt-white);
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dt-hero-arrow:hover {
    background: var(--dt-secondary);
    color: var(--dt-primary);
}

.dt-hero-prev { right: 20px; }
.dt-hero-next { left: 20px; }

.dt-hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dt-hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dt-hero-dot.active,
.dt-hero-dot:hover {
    background: var(--dt-secondary);
    transform: scale(1.2);
}

/* ============================================
   Product Carousel
   ============================================ */
.dt-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.dt-carousel-track {
    display: flex;
    gap: var(--dt-space-lg);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.dt-carousel-track::-webkit-scrollbar {
    display: none;
}

.dt-carousel-track .dt-product-card {
    min-width: 260px;
    max-width: 260px;
    flex-shrink: 0;
}

.dt-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dt-white);
    border: 1px solid var(--dt-border);
    color: var(--dt-text-dark);
    font-size: 16px;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--dt-shadow-md);
}

.dt-carousel-arrow:hover {
    background: var(--dt-primary);
    color: var(--dt-white);
    border-color: var(--dt-primary);
}

.dt-carousel-prev { left: 0; }
.dt-carousel-next { right: 0; }

/* ============================================
   Trust Bar
   ============================================ */
.dt-trust-bar {
    padding-block: var(--dt-space-2xl);
    background: var(--dt-white);
    margin-block: calc(-1 * var(--dt-space-2xl));
    position: relative;
    z-index: 10;
}

.dt-trust-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--dt-space-lg);
}

.dt-trust-item {
    display: flex;
    align-items: center;
    gap: var(--dt-space-md);
    padding: var(--dt-space-lg);
    background: var(--dt-bg);
    border-radius: var(--dt-radius-xl);
    transition: all var(--dt-transition-base);
}

.dt-trust-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--dt-shadow-lg);
}

.dt-trust-icon {
    width: 56px;
    height: 56px;
    background: var(--dt-gradient-primary);
    border-radius: var(--dt-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dt-trust-icon i {
    font-size: 24px;
    color: var(--dt-secondary);
}

.dt-trust-text h4 {
    font-size: var(--dt-font-size-base);
    font-weight: 700;
    color: var(--dt-text-dark);
    margin-bottom: 2px;
}

.dt-trust-text p {
    font-size: var(--dt-font-size-sm);
    color: var(--dt-text-gray);
    margin: 0;
}

/* ============================================
   Product Categories
   ============================================ */
.dt-categories {
    background: var(--dt-bg);
}

.dt-categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--dt-space-lg);
}

.dt-category-card {
    background: var(--dt-white);
    border-radius: var(--dt-radius-xl);
    padding: var(--dt-space-xl);
    text-align: center;
    transition: all var(--dt-transition-base);
    border: 1px solid var(--dt-border);
}

.dt-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--dt-shadow-xl);
    border-color: var(--dt-secondary);
}

.dt-category-image {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--dt-space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dt-category-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform var(--dt-transition-base);
}

.dt-category-card:hover .dt-category-image img {
    transform: scale(1.1);
}

.dt-category-title {
    font-size: var(--dt-font-size-base);
    font-weight: 600;
    color: var(--dt-text-dark);
}

/* ============================================
   Shop Page Layout
   ============================================ */
.dt-main.dt-shop {
    padding-block: 24px;
    min-height: 60vh;
}

.dt-page-header {
    margin-bottom: 24px;
}

.dt-page-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dt-text-dark);
    margin-bottom: 6px;
}

.dt-breadcrumb {
    font-size: 12px;
    color: var(--dt-text-gray);
}

.dt-breadcrumb a {
    color: var(--dt-text-gray);
}

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

/* Toolbar: Result Count + Ordering */
.woocommerce .woocommerce-result-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.woocommerce-result-count {
    font-size: 13px;
    color: var(--dt-text-gray);
    margin: 0;
}

.woocommerce-ordering {
    margin: 0;
}

.woocommerce-ordering select {
    font-family: var(--dt-font-family);
    font-size: 13px;
    padding: 8px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: var(--dt-white);
    color: var(--dt-text-dark);
    cursor: pointer;
    appearance: auto;
}

/* Shop Layout */
.dt-shop-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.dt-shop-content {
    flex: 1;
    min-width: 0;
}

/* ============================================
   Shop Sidebar - Beautiful Filters v2
   ============================================ */
.dt-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 130px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Sidebar Widget Card */
.dt-sidebar-widget {
    background: var(--dt-white);
    border-radius: var(--dt-radius-xl);
    padding: 0;
    border: 1px solid var(--dt-border);
    overflow: hidden;
    transition: box-shadow var(--dt-transition-fast);
}

.dt-sidebar-widget:hover {
    box-shadow: var(--dt-shadow-md);
}

.dt-sidebar-widget:last-child {
    margin-bottom: 0;
}

/* Widget Title */
.dt-widget-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dt-text-dark);
    margin: 0;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
    background: var(--dt-bg);
    border-bottom: 1px solid var(--dt-border);
}

.dt-widget-title i {
    color: var(--dt-white);
    font-size: 12px;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dt-primary);
    border-radius: var(--dt-radius-md);
}

/* ---- Active Filters ---- */
.dt-widget-active-filters {
    background: rgba(253, 181, 21, 0.05);
    border-color: rgba(253, 181, 21, 0.2);
}

.dt-active-filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(253, 181, 21, 0.15);
}

.dt-active-filters-header .dt-widget-title {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}

.dt-active-filters-header .dt-widget-title i {
    background: var(--dt-secondary);
    color: var(--dt-primary-dark);
}

.dt-clear-all {
    font-size: 11px;
    font-weight: 600;
    color: var(--dt-danger);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(239, 68, 68, 0.08);
    border-radius: var(--dt-radius-full);
    transition: all var(--dt-transition-fast);
}

.dt-clear-all:hover {
    background: var(--dt-danger);
    color: var(--dt-white);
}

.dt-active-tags {
    padding: 12px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.dt-active-tag {
    font-size: 11px;
    font-weight: 500;
    color: var(--dt-text-dark);
    background: var(--dt-white);
    border: 1px solid var(--dt-border);
    padding: 5px 10px;
    border-radius: var(--dt-radius-full);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dt-active-tag a {
    color: var(--dt-text-light);
    text-decoration: none;
    font-size: 10px;
    transition: color var(--dt-transition-fast);
}

.dt-active-tag a:hover {
    color: var(--dt-danger);
}

/* ---- Search Widget ---- */
.dt-search-form {
    display: flex;
    margin: 0 16px 16px;
    border: 2px solid var(--dt-bg);
    border-radius: var(--dt-radius-lg);
    overflow: hidden;
    transition: all var(--dt-transition-fast);
    background: var(--dt-bg);
}

.dt-search-form:focus-within {
    border-color: var(--dt-primary);
    background: var(--dt-white);
    box-shadow: 0 0 0 4px rgba(10, 35, 66, 0.06);
}

.dt-search-form .search-field {
    flex: 1;
    font-family: var(--dt-font-family);
    font-size: 13px;
    padding: 10px 14px;
    border: none;
    outline: none;
    background: transparent;
    min-width: 0;
    direction: rtl;
}

.dt-search-form .search-field::placeholder {
    color: var(--dt-text-light);
}

.dt-search-form button {
    padding: 10px 16px;
    background: var(--dt-primary);
    color: var(--dt-white);
    border: none;
    cursor: pointer;
    font-size: 13px;
    transition: background var(--dt-transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dt-search-form button:hover {
    background: var(--dt-primary-light);
}

/* ---- Categories Widget ---- */
.dt-categories-list {
    list-style: none;
    margin: 0;
    padding: 8px 12px;
}

.dt-categories-list li {
    margin: 0;
}

.dt-categories-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--dt-text-gray);
    border-radius: var(--dt-radius-md);
    transition: all var(--dt-transition-fast);
    margin-bottom: 2px;
    text-decoration: none;
}

.dt-categories-list li a:hover {
    background: var(--dt-bg);
    color: var(--dt-primary);
    transform: translateX(-2px);
}

.dt-categories-list li.active a {
    background: var(--dt-gradient-primary);
    color: var(--dt-white);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(10, 35, 66, 0.15);
}

.dt-cat-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dt-bg);
    border-radius: var(--dt-radius-sm);
    font-size: 12px;
    color: var(--dt-primary);
    flex-shrink: 0;
    transition: all var(--dt-transition-fast);
}

.dt-categories-list li.active .dt-cat-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--dt-white);
}

.dt-cat-name {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dt-cat-count {
    font-size: 11px;
    color: var(--dt-text-light);
    background: var(--dt-bg);
    padding: 2px 8px;
    border-radius: var(--dt-radius-full);
    min-width: 24px;
    text-align: center;
    font-weight: 500;
    transition: all var(--dt-transition-fast);
}

.dt-categories-list li.active .dt-cat-count {
    background: rgba(255, 255, 255, 0.2);
    color: var(--dt-white);
}

/* ---- Price Filter Widget ---- */
.dt-widget-price-filter form {
    padding: 0 20px 20px;
}

.dt-price-form {
    direction: rtl;
}

/* Slider */
.dt-price-range-visual {
    position: relative;
    height: 40px;
    margin: 4px 0 20px;
}

.dt-price-range-visual input[type="range"] {
    position: absolute;
    width: 100%;
    height: 30px;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    top: 5px;
    outline: none;
    z-index: 2;
}

.dt-price-range-visual input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--dt-white);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    border: 3px solid var(--dt-secondary);
    box-shadow: 0 2px 8px rgba(253, 181, 21, 0.35);
    position: relative;
    z-index: 3;
    transition: transform var(--dt-transition-fast), box-shadow var(--dt-transition-fast);
}

.dt-price-range-visual input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 3px 14px rgba(253, 181, 21, 0.5);
}

.dt-price-range-visual input[type="range"]::-webkit-slider-thumb:active {
    transform: scale(1.1);
}

.dt-price-range-visual input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--dt-white);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    border: 3px solid var(--dt-secondary);
    box-shadow: 0 2px 8px rgba(253, 181, 21, 0.35);
}

.dt-price-range-bar {
    position: absolute;
    top: 15px;
    height: 6px;
    width: 100%;
    background: var(--dt-bg);
    border-radius: 3px;
    overflow: hidden;
}

.dt-price-range-active {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, var(--dt-secondary) 0%, var(--dt-secondary-light) 100%);
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(253, 181, 21, 0.3);
}

/* Price Values Row */
.dt-price-values-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.dt-price-box {
    flex: 1;
    background: var(--dt-bg);
    border-radius: var(--dt-radius-lg);
    padding: 10px 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: border-color var(--dt-transition-fast);
}

.dt-price-box-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: var(--dt-text-light);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.dt-price-box-value {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--dt-text-dark);
    direction: ltr;
    line-height: 1.2;
}

.dt-price-box-unit {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: var(--dt-text-light);
    margin-top: 2px;
}

.dt-price-to {
    font-size: 12px;
    font-weight: 600;
    color: var(--dt-text-light);
    flex-shrink: 0;
}

/* Submit Button */
.dt-btn-price-filter {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--dt-primary) 0%, var(--dt-primary-light) 100%);
    color: var(--dt-white);
    border: none;
    border-radius: var(--dt-radius-lg);
    font-family: var(--dt-font-family);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--dt-transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(10, 35, 66, 0.2);
}

.dt-btn-price-filter:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(10, 35, 66, 0.3);
}

.dt-btn-price-filter:active {
    transform: translateY(0);
}

/* ---- Stock Status Widget ---- */
.dt-stock-list {
    list-style: none;
    margin: 0;
    padding: 8px 12px;
}

.dt-stock-list li {
    margin: 0;
}

.dt-stock-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--dt-text-gray);
    border-radius: var(--dt-radius-md);
    transition: all var(--dt-transition-fast);
    text-decoration: none;
}

.dt-stock-link:hover {
    background: var(--dt-bg);
    color: var(--dt-primary);
}

.dt-stock-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dt-in-stock {
    background: var(--dt-success);
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.4);
}

.dt-out-of-stock {
    background: var(--dt-danger);
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.4);
}

/* ---- Sale Banner Widget ---- */
.dt-sale-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #FFF7ED 0%, #FEF3C7 100%);
    text-decoration: none;
    transition: all var(--dt-transition-fast);
}

.dt-sale-banner:hover {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
}

.dt-sale-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dt-secondary);
    color: var(--dt-primary-dark);
    border-radius: var(--dt-radius-md);
    font-size: 18px;
    flex-shrink: 0;
}

.dt-sale-info {
    flex: 1;
    min-width: 0;
}

.dt-sale-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--dt-text-dark);
    margin-bottom: 2px;
}

.dt-sale-desc {
    display: block;
    font-size: 11px;
    color: var(--dt-text-gray);
}

.dt-sale-arrow {
    color: var(--dt-text-light);
    font-size: 12px;
    transition: transform var(--dt-transition-fast);
}

.dt-sale-banner:hover .dt-sale-arrow {
    transform: translateX(-4px);
    color: var(--dt-primary);
}

/* ---- Sort Options Widget ---- */
.dt-sort-options {
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dt-sort-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--dt-text-gray);
    border-radius: var(--dt-radius-md);
    transition: all var(--dt-transition-fast);
    text-decoration: none;
}

.dt-sort-link:hover {
    background: var(--dt-bg);
    color: var(--dt-primary);
}

.dt-sort-link.active {
    background: var(--dt-primary);
    color: var(--dt-white);
    font-weight: 600;
}

.dt-sort-link i {
    width: 20px;
    text-align: center;
    font-size: 12px;
}

/* ---- Featured Products Widget ---- */
.dt-widget-featured {
    overflow: visible;
}

.dt-featured-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px 12px;
}

.dt-featured-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: var(--dt-radius-lg);
    transition: all var(--dt-transition-fast);
    text-decoration: none;
    border: 1px solid transparent;
}

.dt-featured-item:hover {
    background: var(--dt-bg);
    border-color: var(--dt-border);
    transform: translateX(-2px);
}

.dt-featured-img {
    width: 60px;
    height: 60px;
    border-radius: var(--dt-radius-md);
    overflow: hidden;
    background: var(--dt-bg);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dt-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dt-featured-badge {
    position: absolute;
    top: 4px;
    left: 4px;
    font-size: 9px;
    font-weight: 700;
    color: var(--dt-white);
    background: var(--dt-secondary);
    padding: 2px 6px;
    border-radius: var(--dt-radius-sm);
}

.dt-featured-info {
    flex: 1;
    min-width: 0;
}

.dt-featured-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--dt-text-dark);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
}

.dt-featured-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--dt-secondary-dark);
}

/* ---- Default WP Widget Styles ---- */
.dt-sidebar .widget {
    background: var(--dt-white);
    border-radius: var(--dt-radius-xl);
    padding: 0;
    margin-bottom: 0;
    border: 1px solid var(--dt-border);
    overflow: hidden;
}

.dt-sidebar .widget:last-child {
    margin-bottom: 0;
}

.dt-sidebar .widget-title,
.dt-sidebar .widgettitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--dt-text-dark);
    margin: 0;
    padding: 16px 20px;
    border-bottom: 1px solid var(--dt-border);
    line-height: 1.4;
    background: var(--dt-bg);
}

.dt-sidebar .widget ul {
    list-style: none;
    margin: 0;
    padding: 8px 12px;
}

.dt-sidebar .widget ul li a {
    font-size: 13px;
    color: var(--dt-text-gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: var(--dt-radius-md);
    transition: all var(--dt-transition-fast);
    margin-bottom: 2px;
}

.dt-sidebar .widget ul li a:hover {
    background: var(--dt-bg);
    color: var(--dt-primary);
}

.dt-sidebar .widget select {
    width: 100%;
    font-family: var(--dt-font-family);
    font-size: 13px;
    padding: 9px 12px;
    border: 2px solid var(--dt-bg);
    border-radius: var(--dt-radius-md);
    background: var(--dt-white);
    color: var(--dt-text-dark);
    cursor: pointer;
    transition: border-color var(--dt-transition-fast);
}

.dt-sidebar .widget select:focus {
    border-color: var(--dt-primary);
    outline: none;
}

/* ============================================
   WooCommerce Shop Grid
   ============================================ */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
    display: none !important;
    content: none !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    width: auto !important;
    margin: 0 !important;
    float: none !important;
    padding: 0 !important;
}

/* Product Card */
.woocommerce ul.products li.product .dt-product-card,
.dt-product-card {
    display: flex;
    flex-direction: column;
    background: var(--dt-white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.25s ease;
    position: relative;
    height: 100%;
}

.woocommerce ul.products li.product .dt-product-card:hover,
.dt-product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: #e2e8f0;
    transform: translateY(-2px);
}

.dt-product-image {
    position: relative;
    padding: 20px;
    background: #fafbfc;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dt-product-image a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.dt-product-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.dt-product-card:hover .dt-product-image img {
    transform: scale(1.05);
}

.dt-product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ef4444;
    color: var(--dt-white);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.6;
}

.dt-product-wishlist {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    color: #94a3b8;
    font-size: 13px;
    opacity: 0;
}

.dt-product-card:hover .dt-product-wishlist {
    opacity: 1;
}

.dt-product-wishlist:hover {
    background: #ef4444;
    color: white;
    opacity: 1;
}

.dt-product-info {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dt-product-brand {
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 4px;
    font-weight: 500;
}

.dt-product-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--dt-text-dark);
    margin: 0 0 8px 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: right;
    min-height: 42px;
}

.dt-product-title a {
    color: inherit;
    text-decoration: none;
}

.dt-product-title a:hover {
    color: var(--dt-primary);
}

.dt-product-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 8px;
    direction: ltr;
    justify-content: flex-end;
}

.dt-product-rating .star {
    color: #f5a623;
    font-size: 11px;
}

.dt-product-rating .star.empty {
    color: #e0e0e0;
}

.dt-product-rating span.count {
    font-size: 10px;
    color: #94a3b8;
    margin-left: 4px;
    direction: rtl;
}

/* Price */
.dt-product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
    direction: rtl;
    margin-top: auto;
}

.dt-product-price .amount {
    font-size: 17px;
    font-weight: 700;
    color: var(--dt-text-dark);
    font-family: var(--dt-font-family);
}

.dt-product-price del .amount {
    font-size: 12px;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 400;
}

.dt-product-price del {
    display: inline-flex;
    align-items: center;
}

.dt-product-price ins {
    text-decoration: none;
}

.dt-product-price .woocommerce-price-suffix {
    font-size: 11px;
    color: #94a3b8;
}

/* WooCommerce Price - hide currency symbol, show تومان */
.woocommerce ul.products li.product .price,
.woocommerce div.product .price {
    font-family: var(--dt-font-family);
}

.dt-price-currency {
    font-size: 11px;
    font-weight: 500;
    color: #94a3b8;
    margin-right: 2px;
}

.woocommerce ul.products li.product .price del + ins {
    margin-right: 6px;
}

/* Add to Cart Button */
.dt-product-actions {
    display: flex;
    gap: 0;
    margin-top: auto;
}

.dt-product-addtocart {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    background: var(--dt-primary);
    color: var(--dt-white);
    border: none;
    border-radius: 8px;
    font-family: var(--dt-font-family);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    line-height: 1;
    width: 100%;
}

.dt-product-addtocart i {
    font-size: 12px;
}

.dt-product-addtocart:hover {
    background: var(--dt-primary-light);
    color: var(--dt-white);
    text-decoration: none;
}

.dt-product-addtocart:disabled {
    background: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
}

/* No Results */
.dt-no-results {
    text-align: center;
    padding: 60px 20px;
}

.dt-no-results h2 {
    font-size: 20px;
    margin-bottom: 8px;
}

.dt-no-results p {
    color: var(--dt-text-gray);
    margin-bottom: 20px;
}

/* ============================================
   Featured Products
   ============================================ */
.dt-featured-products {
    background: var(--dt-white);
}

.dt-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dt-product-card {
    background: var(--dt-white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.dt-product-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-color: transparent;
    transform: translateY(-4px);
}

.dt-product-image {
    position: relative;
    padding: 16px;
    background: #fafbfc;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dt-product-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.dt-product-card:hover .dt-product-image img {
    transform: scale(1.05);
}

.dt-product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ef4444;
    color: var(--dt-white);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.6;
}

.dt-product-wishlist {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    color: #94a3b8;
    font-size: 13px;
    opacity: 0.6;
}

.dt-product-card:hover .dt-product-wishlist {
    opacity: 1;
}

.dt-product-wishlist:hover {
    background: #ef4444;
    color: white;
    opacity: 1;
}

.dt-product-info {
    padding: 14px 16px 16px;
}

.dt-product-brand {
    font-size: 11px;
    color: var(--dt-text-light);
    margin-bottom: 4px;
    font-weight: 500;
}

.dt-product-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--dt-text-dark);
    margin-bottom: 6px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: right;
    min-height: 42px;
}

.dt-product-title a {
    color: inherit;
    text-decoration: none;
}

.dt-product-title a:hover {
    color: var(--dt-primary);
}

.dt-product-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 10px;
    direction: ltr;
    justify-content: flex-end;
}

.dt-product-rating .star {
    color: #f5a623;
    font-size: 11px;
}

.dt-product-rating .star.empty {
    color: #e0e0e0;
}

.dt-product-rating span.count {
    font-size: 10px;
    color: var(--dt-text-light);
    margin-left: 4px;
    direction: rtl;
}

.dt-product-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    direction: rtl;
}

.dt-product-price .amount {
    font-size: 16px;
    font-weight: 700;
    color: var(--dt-text-dark);
}

.dt-product-price del .amount {
    font-size: 12px;
    color: var(--dt-text-light);
    text-decoration: line-through;
    font-weight: 400;
}

.dt-product-price ins {
    text-decoration: none;
}

.dt-product-price .woocommerce-price-suffix {
    font-size: 10px;
    color: var(--dt-text-light);
}

.dt-product-actions {
    display: flex;
    gap: 0;
}

.dt-product-addtocart {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 12px;
    background: transparent;
    color: var(--dt-primary);
    border: 1.5px solid var(--dt-primary);
    border-radius: 8px;
    font-family: var(--dt-font-family);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    line-height: 1;
}

.dt-product-addtocart i {
    font-size: 12px;
}

.dt-product-addtocart:hover {
    background: var(--dt-primary);
    color: var(--dt-white);
    text-decoration: none;
}

.dt-product-addtocart:disabled {
    border-color: #e0e0e0;
    color: #bbb;
    cursor: not-allowed;
    background: transparent;
}

/* ============================================
   Installation Services
   ============================================ */
.dt-services {
    background: var(--dt-gradient-dark);
    color: var(--dt-white);
}

.dt-services .section-title {
    color: var(--dt-white);
}

.dt-services .section-title::after {
    background: var(--dt-secondary);
}

.dt-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--dt-space-xl);
}

.dt-service-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--dt-radius-xl);
    padding: var(--dt-space-2xl);
    text-align: center;
    transition: all var(--dt-transition-base);
}

.dt-service-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
}

.dt-service-icon {
    width: 80px;
    height: 80px;
    background: var(--dt-gradient-secondary);
    border-radius: var(--dt-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--dt-space-xl);
}

.dt-service-icon i {
    font-size: 32px;
    color: var(--dt-primary);
}

.dt-service-title {
    font-size: var(--dt-font-size-xl);
    font-weight: 700;
    color: var(--dt-white);
    margin-bottom: var(--dt-space-md);
}

.dt-service-desc {
    font-size: var(--dt-font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--dt-space-xl);
    line-height: 1.8;
}

/* ============================================
   Why Us Section
   ============================================ */
.dt-why-us {
    background: var(--dt-white);
}

.dt-why-us .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--dt-space-4xl);
    align-items: center;
}

.dt-why-us-image img {
    border-radius: var(--dt-radius-xl);
    box-shadow: var(--dt-shadow-2xl);
}

.dt-why-us-features {
    display: flex;
    flex-direction: column;
    gap: var(--dt-space-lg);
}

.dt-why-us-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--dt-space-lg);
    padding: var(--dt-space-lg);
    background: var(--dt-bg);
    border-radius: var(--dt-radius-lg);
    transition: all var(--dt-transition-base);
}

.dt-why-us-feature:hover {
    background: var(--dt-white);
    box-shadow: var(--dt-shadow-md);
}

.dt-why-us-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--dt-secondary);
    border-radius: var(--dt-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dt-why-us-feature-icon i {
    font-size: 20px;
    color: var(--dt-primary);
}

.dt-why-us-feature-text h4 {
    font-size: var(--dt-font-size-base);
    font-weight: 700;
    margin-bottom: 4px;
}

.dt-why-us-feature-text p {
    font-size: var(--dt-font-size-sm);
    color: var(--dt-text-gray);
    margin: 0;
}

/* ============================================
   Projects Showcase
   ============================================ */
.dt-projects {
    background: var(--dt-bg);
}

.dt-projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--dt-space-lg);
}

.dt-project-card {
    position: relative;
    border-radius: var(--dt-radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.dt-project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dt-transition-slow);
}

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

.dt-project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 35, 66, 0.9) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--dt-space-xl);
    opacity: 0;
    transition: opacity var(--dt-transition-base);
}

.dt-project-card:hover .dt-project-overlay {
    opacity: 1;
}

.dt-project-category {
    font-size: var(--dt-font-size-xs);
    color: var(--dt-secondary);
    font-weight: 600;
    margin-bottom: var(--dt-space-sm);
}

.dt-project-title {
    font-size: var(--dt-font-size-lg);
    font-weight: 700;
    color: var(--dt-white);
}

/* ============================================
   Blog Section
   ============================================ */
.dt-blog {
    background: var(--dt-white);
}

.dt-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--dt-space-xl);
}

.dt-blog-card {
    background: var(--dt-white);
    border-radius: var(--dt-radius-xl);
    overflow: hidden;
    border: 1px solid var(--dt-border);
    transition: all var(--dt-transition-base);
}

.dt-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--dt-shadow-xl);
}

.dt-blog-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.dt-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dt-transition-base);
}

.dt-blog-card:hover .dt-blog-image img {
    transform: scale(1.05);
}

.dt-blog-content {
    padding: var(--dt-space-xl);
}

.dt-blog-category {
    display: inline-block;
    background: rgba(253, 181, 21, 0.1);
    color: var(--dt-secondary-dark);
    padding: 4px 12px;
    border-radius: var(--dt-radius-full);
    font-size: var(--dt-font-size-xs);
    font-weight: 600;
    margin-bottom: var(--dt-space-md);
}

.dt-blog-title {
    font-size: var(--dt-font-size-lg);
    font-weight: 700;
    color: var(--dt-text-dark);
    margin-bottom: var(--dt-space-md);
    line-height: 1.4;
}

.dt-blog-title:hover {
    color: var(--dt-secondary);
}

.dt-blog-excerpt {
    font-size: var(--dt-font-size-sm);
    color: var(--dt-text-gray);
    line-height: 1.8;
    margin-bottom: var(--dt-space-lg);
}

.dt-blog-meta {
    display: flex;
    align-items: center;
    gap: var(--dt-space-md);
    font-size: var(--dt-font-size-xs);
    color: var(--dt-text-light);
}

.dt-blog-meta i {
    margin-left: 4px;
}

/* ============================================
   Testimonials
   ============================================ */
.dt-testimonials {
    background: var(--dt-bg);
}

.dt-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--dt-space-xl);
}

.dt-testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--dt-radius-xl);
    padding: var(--dt-space-2xl);
    transition: all var(--dt-transition-base);
}

.dt-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dt-shadow-lg);
}

.dt-testimonial-quote {
    font-size: var(--dt-font-size-sm);
    color: var(--dt-text-gray);
    line-height: 1.8;
    margin-bottom: var(--dt-space-xl);
    position: relative;
    padding-top: var(--dt-space-lg);
}

.dt-testimonial-quote::before {
    content: '\201C';
    font-size: 48px;
    color: var(--dt-secondary);
    position: absolute;
    top: -10px;
    right: 0;
    line-height: 1;
    font-family: serif;
}

.dt-testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--dt-space-md);
}

.dt-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--dt-secondary);
}

.dt-testimonial-name {
    font-size: var(--dt-font-size-base);
    font-weight: 600;
    color: var(--dt-text-dark);
}

.dt-testimonial-rating {
    display: flex;
    gap: 2px;
}

.dt-testimonial-rating i {
    color: var(--dt-secondary);
    font-size: var(--dt-font-size-xs);
}

/* ============================================
   Footer
   ============================================ */
.dt-footer {
    background: var(--dt-gradient-dark);
    color: var(--dt-white);
    padding-top: var(--dt-space-4xl);
}

.dt-footer-main {
    padding-block: var(--dt-space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dt-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: var(--dt-space-3xl);
}

.dt-footer-about {
    margin-bottom: var(--dt-space-xl);
}

.dt-footer-about p {
    font-size: var(--dt-font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.dt-footer-title {
    font-size: var(--dt-font-size-lg);
    font-weight: 700;
    color: var(--dt-white);
    margin-bottom: var(--dt-space-xl);
    position: relative;
    padding-bottom: var(--dt-space-md);
}

.dt-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--dt-secondary);
    border-radius: var(--dt-radius-full);
}

.dt-footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--dt-space-sm);
}

.dt-footer-link {
    font-size: var(--dt-font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--dt-transition-fast);
    display: flex;
    align-items: center;
    gap: var(--dt-space-sm);
}

.dt-footer-link:hover {
    color: var(--dt-secondary);
    padding-inline-start: 8px;
}

.dt-footer-link i {
    font-size: 12px;
    color: var(--dt-secondary);
}

.dt-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--dt-space-md);
    margin-bottom: var(--dt-space-md);
    font-size: var(--dt-font-size-sm);
    color: rgba(255, 255, 255, 0.7);
}

.dt-footer-contact-item i {
    font-size: 18px;
    color: var(--dt-secondary);
    margin-top: 2px;
}

.dt-footer-social {
    display: flex;
    gap: var(--dt-space-md);
    margin-top: var(--dt-space-xl);
}

.dt-footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--dt-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dt-white);
    transition: all var(--dt-transition-fast);
}

.dt-footer-social a:hover {
    background: var(--dt-secondary);
    color: var(--dt-primary);
}

.dt-footer-bottom {
    padding-block: var(--dt-space-lg);
}

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

.dt-footer-copyright {
    font-size: var(--dt-font-size-sm);
    color: rgba(255, 255, 255, 0.6);
}

.dt-footer-trust {
    display: flex;
    gap: var(--dt-space-lg);
}

.dt-footer-trust img {
    height: 40px;
    opacity: 0.7;
    transition: opacity var(--dt-transition-fast);
}

.dt-footer-trust img:hover {
    opacity: 1;
}

/* ============================================
   Mobile Menu
   ============================================ */
.dt-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    font-size: 24px;
    color: var(--dt-text-dark);
}

/* ============================================
   WordPress Specific
   ============================================ */
.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: var(--dt-font-size-sm);
    color: var(--dt-text-gray);
    text-align: center;
    padding: var(--dt-space-sm);
}

.alignright {
    float: right;
    margin-inline-start: var(--dt-space-xl);
    margin-bottom: var(--dt-space-md);
}

.alignleft {
    float: left;
    margin-inline-end: var(--dt-space-xl);
    margin-bottom: var(--dt-space-md);
}

.aligncenter {
    display: block;
    margin: var(--dt-space-lg) auto;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ============================================
   WooCommerce Overrides
   ============================================ */
.woocommerce ul.products li.product {
    margin: 0;
    border: none;
}

.woocommerce .products .star-rating {
    color: #f5a623;
}

.woocommerce div.product .price {
    color: var(--dt-text-dark);
    font-weight: 700;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--dt-primary);
    color: var(--dt-white);
    border-radius: 8px;
    font-family: var(--dt-font-family);
    font-weight: 600;
    border: none;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--dt-primary-light);
    color: var(--dt-white);
}

/* WooCommerce Result Count & Ordering bar */
.woocommerce-result-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* WooCommerce Notices */
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error {
    font-family: var(--dt-font-family);
    font-size: 13px;
    border-radius: 8px;
    border: none;
}

.woocommerce .woocommerce-info {
    background: #f1f5f9;
    color: var(--dt-text-dark);
}

.woocommerce .woocommerce-error li {
    font-family: var(--dt-font-family);
}

/* ============================================
   Single Product Page
   ============================================ */
.dt-single-product {
    padding: var(--dt-space-2xl) 0 var(--dt-space-4xl);
}

.dt-single-product-wrapper {
    max-width: var(--dt-container-max);
    margin: 0 auto;
}

/* Two-Column Layout - Gallery Right, Summary Left in RTL */
.dt-single-product-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--dt-space-3xl);
    align-items: start;
    margin-bottom: var(--dt-space-3xl);
}

[dir="rtl"] .dt-single-product-layout {
    direction: ltr;
}

[dir="rtl"] .dt-product-gallery {
    order: 2;
}

[dir="rtl"] .dt-product-summary {
    order: 1;
    direction: rtl;
}

/* Product Gallery */
.dt-product-gallery {
    position: sticky;
    top: 100px;
}

.dt-product-gallery .woocommerce-product-gallery {
    opacity: 1 !important;
    margin: 0 !important;
    border: none;
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
}

.dt-product-gallery .woocommerce-product-gallery__wrapper {
    border-radius: var(--dt-radius-xl);
    overflow: hidden;
    background: var(--dt-white);
    border: 1px solid var(--dt-border);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    width: 100%;
}

/* Override WooCommerce default gallery width */
.woocommerce div.product div.images,
.woocommerce #content div.product div.images {
    width: 100% !important;
    float: none !important;
    padding: 0 !important;
}

.woocommerce div.product div.summary,
.woocommerce #content div.product div.summary {
    width: 100% !important;
    float: none !important;
    padding: 0 !important;
}

.dt-product-gallery .woocommerce-product-gallery__image {
    margin: 0;
    padding: 0;
    flex: 1;
    width: 100%;
}

.dt-product-gallery .woocommerce-product-gallery__image a {
    display: block;
    width: 100%;
}

.dt-product-gallery .woocommerce-product-gallery__image img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    display: block;
}

.dt-product-gallery .woocommerce-product-gallery__image--placeholder {
    flex: 1;
    width: 100%;
}

.dt-product-gallery .woocommerce-product-gallery__image--placeholder img {
    height: 450px;
    object-fit: contain;
    padding: var(--dt-space-2xl);
    opacity: 0.3;
}

/* Gallery Thumbnails */
.dt-product-gallery .woocommerce-product-gallery__thumbnails {
    display: flex;
    gap: var(--dt-space-sm);
    margin-top: var(--dt-space-md);
    justify-content: flex-start;
}

.dt-product-gallery .woocommerce-product-gallery__thumbnails li {
    flex: 0 0 80px;
    height: 65px;
    border: 2px solid var(--dt-border);
    border-radius: var(--dt-radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--dt-transition-fast);
    opacity: 0.6;
}

.dt-product-gallery .woocommerce-product-gallery__thumbnails li.active,
.dt-product-gallery .woocommerce-product-gallery__thumbnails li:hover {
    border-color: var(--dt-secondary);
    opacity: 1;
    box-shadow: 0 0 0 3px rgba(253, 181, 21, 0.2);
}

.dt-product-gallery .woocommerce-product-gallery__thumbnails img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sale Badge */
.dt-product-gallery .onsale,
.onsale {
    position: absolute;
    top: 16px;
    right: 16px;
    left: auto;
    background: var(--dt-danger);
    color: var(--dt-white);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--dt-radius-full);
    z-index: 2;
    line-height: 1.4;
    min-height: auto;
    min-width: auto;
    width: auto;
    height: auto;
    margin: 0;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Product Summary - Right Side */
.dt-product-summary {
    padding: 0;
}

.dt-product-summary .product_title {
    font-size: var(--dt-font-size-2xl);
    font-weight: 700;
    color: var(--dt-text-dark);
    line-height: 1.5;
    margin-bottom: var(--dt-space-lg);
}

/* Price Styling */
.dt-product-summary .price {
    display: flex;
    align-items: center;
    gap: var(--dt-space-md);
    margin-bottom: var(--dt-space-lg);
    flex-wrap: wrap;
    padding: var(--dt-space-md) var(--dt-space-lg);
    background: var(--dt-bg);
    border-radius: var(--dt-radius-lg);
}

.dt-product-summary .price del {
    font-size: var(--dt-font-size-lg);
    color: var(--dt-text-light);
    text-decoration: line-through;
    font-weight: 400;
}

.dt-product-summary .price ins {
    font-size: var(--dt-font-size-3xl);
    font-weight: 800;
    color: var(--dt-danger);
    text-decoration: none;
    background: none;
}

.dt-price-currency {
    font-size: var(--dt-font-size-lg);
    font-weight: 600;
    color: var(--dt-text-gray);
}

/* Short Description */
.woocommerce-product-details__short-description {
    padding: var(--dt-space-md) var(--dt-space-lg);
    background: var(--dt-white);
    border-radius: var(--dt-radius-md);
    border: 1px solid var(--dt-border);
    margin-bottom: var(--dt-space-lg);
    color: var(--dt-text-gray);
    line-height: 1.8;
    font-size: var(--dt-font-size-sm);
}

.woocommerce-product-details__short-description p {
    margin: 0;
}

/* Stock Status */
.stock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--dt-font-size-sm);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--dt-radius-full);
    margin-bottom: var(--dt-space-lg);
}

.stock.in-stock {
    background: #dcfce7;
    color: #166534;
}

.stock.in-stock::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
}

.stock.out-of-stock {
    background: #fef2f2;
    color: #991b1b;
}

/* Add to Cart Form */
.dt-product-summary form.cart {
    display: flex;
    align-items: center;
    gap: var(--dt-space-md);
    margin-bottom: var(--dt-space-lg);
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    flex-wrap: nowrap;
}

/* Quantity Box - Fix RTL order */
.dt-product-summary .quantity {
    position: relative;
    display: flex;
    align-items: stretch;
    height: 50px;
    direction: ltr;
}

.dt-product-summary .quantity label {
    display: none;
}

.dt-product-summary .quantity input.qty {
    width: 60px;
    height: 100%;
    text-align: center;
    font-size: var(--dt-font-size-lg);
    font-weight: 700;
    border: 2px solid var(--dt-border);
    border-radius: 0;
    background: var(--dt-white);
    color: var(--dt-text-dark);
    font-family: var(--dt-font-family);
    -moz-appearance: textfield;
    padding: 0;
    z-index: 1;
    direction: ltr;
}

.dt-product-summary .quantity input.qty::-webkit-outer-spin-button,
.dt-product-summary .quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.dt-product-summary .quantity input.qty:focus {
    outline: none;
    border-color: var(--dt-secondary);
    z-index: 2;
}

/* Quantity +/- Buttons - Same Height as Input */
.dt-qty-btn {
    width: 42px;
    height: 100%;
    border: 2px solid var(--dt-border);
    background: var(--dt-bg);
    color: var(--dt-text-dark);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all var(--dt-transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dt-qty-btn:hover {
    background: var(--dt-secondary);
    border-color: var(--dt-secondary);
    color: var(--dt-primary);
}

.dt-qty-btn:active {
    transform: scale(0.95);
}

.dt-qty-btn.dt-qty-minus {
    border-radius: var(--dt-radius-md) 0 0 var(--dt-radius-md);
    order: 0;
}

.dt-qty-btn.dt-qty-plus {
    border-radius: 0 var(--dt-radius-md) var(--dt-radius-md) 0;
    order: 2;
}

.dt-qty-btn i {
    font-size: 11px;
    line-height: 1;
}

/* Add to Cart Button */
.dt-product-summary button.single_add_to_cart_button {
    height: 50px;
    padding: 0 28px;
    font-size: var(--dt-font-size-sm);
    font-weight: 700;
    background: var(--dt-secondary);
    color: var(--dt-primary);
    border: none;
    border-radius: var(--dt-radius-md);
    cursor: pointer;
    transition: all var(--dt-transition-fast);
    font-family: var(--dt-font-family);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.dt-product-summary button.single_add_to_cart_button::before {
    content: "\f07a";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
}

.dt-product-summary button.single_add_to_cart_button:hover {
    background: var(--dt-secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 181, 21, 0.35);
}

.dt-product-summary button.single_add_to_cart_button:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Product Meta */
.product_meta {
    padding-top: var(--dt-space-md);
    border-top: 1px solid var(--dt-border);
    display: flex;
    flex-wrap: wrap;
    gap: var(--dt-space-md);
    font-size: var(--dt-font-size-sm);
    color: var(--dt-text-gray);
}

.product_meta .sku_wrapper,
.product_meta .posted_in {
    display: flex;
    align-items: center;
    gap: 6px;
}

.product_meta a {
    color: var(--dt-primary);
    font-weight: 600;
    transition: color var(--dt-transition-fast);
}

.product_meta a:hover {
    color: var(--dt-secondary);
}

/* ============================================
   Single Product Tabs
   ============================================ */
.dt-product-tabs {
    margin-top: var(--dt-space-3xl);
}

.woocommerce-tabs.wc-tabs-wrapper {
    background: var(--dt-white);
    border-radius: var(--dt-radius-xl);
    border: 1px solid var(--dt-border);
    overflow: hidden;
}

.woocommerce-tabs .wc-tabs {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    background: var(--dt-bg);
    border-bottom: 2px solid var(--dt-border);
}

.woocommerce-tabs .wc-tabs li {
    margin: 0;
    border: none;
    border-radius: 0;
    background: none;
    flex: none;
    position: relative;
}

.woocommerce-tabs .wc-tabs li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dt-text-gray);
    text-decoration: none;
    transition: all var(--dt-transition-fast);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
}

.woocommerce-tabs .wc-tabs li a:hover {
    color: var(--dt-text-dark);
    background: rgba(255, 255, 255, 0.5);
}

.woocommerce-tabs .wc-tabs li.active a {
    color: var(--dt-primary);
    border-bottom-color: var(--dt-secondary);
    background: var(--dt-white);
}

.woocommerce-Tabs-panel {
    padding: var(--dt-space-xl) var(--dt-space-2xl);
}

.woocommerce-Tabs-panel h2 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dt-text-dark);
    margin: 0 0 var(--dt-space-lg) 0;
    padding: 0 0 var(--dt-space-md) 0;
    border-bottom: 2px solid var(--dt-bg);
    display: block;
}

.woocommerce-Tabs-panel h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dt-text-dark);
    margin: var(--dt-space-lg) 0 var(--dt-space-md) 0;
}

.woocommerce-Tabs-panel p {
    margin: 0 0 var(--dt-space-md) 0;
    line-height: 1.8;
    color: var(--dt-text-gray);
}

.woocommerce-Tabs-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-Tabs-panel ul li {
    padding: 10px 30px 10px 0;
    color: var(--dt-text-dark);
    line-height: 1.7;
    border-bottom: 1px solid var(--dt-bg);
    position: relative;
    font-size: 14px;
}

.woocommerce-Tabs-panel ul li:last-child {
    border-bottom: none;
}

.woocommerce-Tabs-panel ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    left: auto;
    color: var(--dt-secondary);
    font-size: 11px;
    top: 14px;
}

/* Reviews */
.woocommerce-Reviews #comments {
    margin-bottom: var(--dt-space-xl);
}

.woocommerce-Reviews-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--dt-space-lg);
    color: var(--dt-text-dark);
}

.woocommerce-noreviews {
    padding: var(--dt-space-xl);
    text-align: center;
    color: var(--dt-text-gray);
    background: var(--dt-bg);
    border-radius: var(--dt-radius-lg);
    font-size: 14px;
    border: 1px dashed var(--dt-border);
}

.comment-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dt-text-dark);
    font-size: var(--dt-font-size-sm);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea,
.comment-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--dt-border);
    border-radius: var(--dt-radius-md);
    font-family: var(--dt-font-family);
    font-size: var(--dt-font-size-sm);
    color: var(--dt-text-dark);
    background: var(--dt-white);
    transition: border-color var(--dt-transition-fast);
    margin-bottom: var(--dt-space-md);
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form textarea:focus,
.comment-form select:focus {
    outline: none;
    border-color: var(--dt-secondary);
    box-shadow: 0 0 0 3px rgba(253, 181, 21, 0.15);
}

.comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.comment-form .form-submit input.submit {
    height: 46px;
    padding: 0 32px;
    font-size: var(--dt-font-size-base);
    font-weight: 700;
    background: var(--dt-secondary);
    color: var(--dt-primary);
    border: none;
    border-radius: var(--dt-radius-md);
    cursor: pointer;
    font-family: var(--dt-font-family);
    transition: all var(--dt-transition-fast);
}

.comment-form .form-submit input.submit:hover {
    background: var(--dt-secondary-dark);
    transform: translateY(-2px);
}

.comment-form .comment-notes {
    font-size: var(--dt-font-size-sm);
    color: var(--dt-text-gray);
    margin-bottom: var(--dt-space-md);
}

/* ============================================
   Related Products
   ============================================ */
.related.products {
    margin-top: var(--dt-space-3xl);
    padding-top: var(--dt-space-2xl);
    border-top: 1px solid var(--dt-border);
}

.related.products h2 {
    font-size: var(--dt-font-size-xl);
    font-weight: 700;
    margin-bottom: var(--dt-space-xl);
    color: var(--dt-text-dark);
}

.related.products ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--dt-space-lg);
}

.related.products ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
}

/* ============================================
   Loading Animation
   ============================================ */
.dt-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--dt-border);
    border-top-color: var(--dt-secondary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   Scroll to Top
   ============================================ */
.dt-scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    background: var(--dt-secondary);
    color: var(--dt-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--dt-transition-base);
    z-index: 999;
    box-shadow: var(--dt-shadow-lg);
}

.dt-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dt-scroll-top:hover {
    background: var(--dt-primary);
    color: var(--dt-white);
    transform: translateY(-4px);
}

/* ============================================
   My Account Page
   ============================================ */
.dt-account-layout {
    display: flex;
    gap: var(--dt-space-2xl);
    align-items: flex-start;
}

.dt-account-nav {
    width: 260px;
    flex-shrink: 0;
    position: sticky;
    top: 140px;
}

.dt-account-menu {
    background: var(--dt-white);
    border-radius: var(--dt-radius-xl);
    border: 1px solid var(--dt-border);
    overflow: hidden;
}

.dt-account-menu-item {
    display: flex;
    align-items: center;
    gap: var(--dt-space-md);
    padding: 14px 20px;
    font-size: var(--dt-font-size-sm);
    font-weight: 500;
    color: var(--dt-text-gray);
    transition: all var(--dt-transition-fast);
    border-bottom: 1px solid var(--dt-bg);
    text-decoration: none;
}

.dt-account-menu-item:last-child {
    border-bottom: none;
}

.dt-account-menu-item:hover {
    background: var(--dt-bg);
    color: var(--dt-primary);
}

.dt-account-menu-item.active {
    background: var(--dt-primary);
    color: var(--dt-white);
    font-weight: 600;
}

.dt-account-menu-item.active i {
    color: var(--dt-secondary);
}

.dt-account-menu-item i {
    width: 20px;
    text-align: center;
    font-size: 14px;
}

.dt-account-content {
    flex: 1;
    min-width: 0;
    background: var(--dt-white);
    border-radius: var(--dt-radius-xl);
    border: 1px solid var(--dt-border);
    padding: var(--dt-space-2xl);
}

/* WooCommerce Account Overrides */
.woocommerce-account .woocommerce-MyAccount-navigation {
    display: none;
}

.woocommerce-account .woocommerce-MyAccount-content {
    width: 100% !important;
    float: none !important;
    padding: 0 !important;
}

.woocommerce-account .woocommerce-MyAccount-content h2 {
    font-size: var(--dt-font-size-xl);
    font-weight: 700;
    color: var(--dt-text-dark);
    margin: 0 0 var(--dt-space-xl) 0;
    padding-bottom: var(--dt-space-md);
    border-bottom: 2px solid var(--dt-bg);
}

.woocommerce-account .woocommerce-MyAccount-content table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--dt-font-family);
    font-size: var(--dt-font-size-sm);
}

.woocommerce-account .woocommerce-MyAccount-content table thead th {
    background: var(--dt-bg);
    padding: 12px 16px;
    font-weight: 600;
    color: var(--dt-text-dark);
    border-bottom: 2px solid var(--dt-border);
    text-align: right;
}

.woocommerce-account .woocommerce-MyAccount-content table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--dt-bg);
    color: var(--dt-text-gray);
}

.woocommerce-account .woocommerce-MyAccount-content table tbody tr:hover {
    background: var(--dt-bg);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-MyAccount-orders .order-actions .button {
    background: var(--dt-primary);
    color: var(--dt-white);
    padding: 6px 14px;
    border-radius: var(--dt-radius-md);
    font-size: 12px;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-addresses .woocommerce-Address {
    background: var(--dt-bg);
    border-radius: var(--dt-radius-lg);
    padding: var(--dt-space-xl);
    margin-bottom: var(--dt-space-lg);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-addresses .woocommerce-Address h3 {
    font-size: var(--dt-font-size-base);
    font-weight: 700;
    margin: 0 0 var(--dt-space-md) 0;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address address {
    font-style: normal;
    line-height: 1.8;
    color: var(--dt-text-gray);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address .edit {
    color: var(--dt-primary);
    font-weight: 600;
}

.woocommerce-MyAccount-navigation ul {
    display: none;
}

/* ============================================
   Login / Register Page
   ============================================ */
.dt-login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    padding: var(--dt-space-xl) 0;
}

.dt-login-card {
    width: 100%;
    max-width: 460px;
    background: var(--dt-white);
    border-radius: var(--dt-radius-2xl);
    border: 1px solid var(--dt-border);
    box-shadow: var(--dt-shadow-xl);
    overflow: hidden;
}

.dt-login-header {
    background: var(--dt-gradient-primary);
    padding: var(--dt-space-2xl) var(--dt-space-xl);
    text-align: center;
}

.dt-login-logo {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--dt-space-lg);
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--dt-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.25);
}

.dt-login-logo i {
    font-size: 32px;
    color: var(--dt-secondary);
}

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

.dt-login-title {
    font-size: var(--dt-font-size-xl);
    font-weight: 700;
    color: var(--dt-white);
    margin: 0 0 var(--dt-space-sm);
}

.dt-login-subtitle {
    font-size: var(--dt-font-size-sm);
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Tabs */
.dt-login-tabs {
    display: flex;
    border-bottom: 2px solid var(--dt-bg);
}

.dt-login-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--dt-space-sm);
    padding: var(--dt-space-md) var(--dt-space-lg);
    font-family: var(--dt-font-family);
    font-size: var(--dt-font-size-sm);
    font-weight: 600;
    color: var(--dt-text-gray);
    background: none;
    border: none;
    cursor: pointer;
    transition: all var(--dt-transition-fast);
    position: relative;
}

.dt-login-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--dt-secondary);
    transform: scaleX(0);
    transition: transform var(--dt-transition-fast);
}

.dt-login-tab:hover {
    color: var(--dt-primary);
}

.dt-login-tab.active {
    color: var(--dt-primary);
}

.dt-login-tab.active::after {
    transform: scaleX(1);
}

/* Form Wrapper */
.dt-login-form-wrapper {
    padding: var(--dt-space-xl);
}

.dt-login-form-title {
    font-size: var(--dt-font-size-base);
    font-weight: 700;
    color: var(--dt-text-dark);
    margin: 0 0 var(--dt-space-xl);
    display: flex;
    align-items: center;
    gap: var(--dt-space-sm);
}

.dt-login-form-title i {
    color: var(--dt-secondary);
}

/* Form Groups */
.dt-form-group {
    margin-bottom: var(--dt-space-lg);
}

.dt-form-label {
    display: flex;
    align-items: center;
    gap: var(--dt-space-sm);
    font-size: var(--dt-font-size-sm);
    font-weight: 600;
    color: var(--dt-text-dark);
    margin-bottom: var(--dt-space-sm);
}

.dt-form-label i {
    color: var(--dt-primary);
    font-size: 14px;
}

.dt-form-input {
    width: 100%;
    height: 48px;
    padding: 0 var(--dt-space-lg);
    font-family: var(--dt-font-family);
    font-size: var(--dt-font-size-sm);
    color: var(--dt-text-dark);
    background: var(--dt-bg);
    border: 2px solid transparent;
    border-radius: var(--dt-radius-lg);
    outline: none;
    transition: all var(--dt-transition-fast);
    box-sizing: border-box;
}

.dt-form-input::placeholder {
    color: var(--dt-text-light);
}

.dt-form-input:focus {
    border-color: var(--dt-primary);
    background: var(--dt-white);
    box-shadow: 0 0 0 4px rgba(10, 35, 66, 0.08);
}

/* Password Field */
.dt-form-password-wrapper {
    position: relative;
}

.dt-form-password-wrapper .dt-form-input {
    padding-left: 48px;
}

.dt-password-toggle {
    position: absolute;
    left: var(--dt-space-md);
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--dt-text-light);
    cursor: pointer;
    padding: 4px;
    font-size: 16px;
    transition: color var(--dt-transition-fast);
}

.dt-password-toggle:hover {
    color: var(--dt-primary);
}

/* Row (remember me + forgot password) */
.dt-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--dt-space-xl);
}

.dt-form-checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--dt-space-sm);
    font-size: var(--dt-font-size-sm);
    color: var(--dt-text-gray);
    cursor: pointer;
    user-select: none;
}

.dt-form-checkbox-label input[type="checkbox"] {
    display: none;
}

.dt-checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--dt-border);
    border-radius: var(--dt-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--dt-transition-fast);
    flex-shrink: 0;
}

.dt-checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    color: var(--dt-white);
    opacity: 0;
    transform: scale(0);
    transition: all var(--dt-transition-fast);
}

.dt-form-checkbox-label input[type="checkbox"]:checked + .dt-checkbox-custom {
    background: var(--dt-primary);
    border-color: var(--dt-primary);
}

.dt-form-checkbox-label input[type="checkbox"]:checked + .dt-checkbox-custom::after {
    opacity: 1;
    transform: scale(1);
}

.dt-form-forgot {
    font-size: var(--dt-font-size-xs);
    color: var(--dt-secondary-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--dt-transition-fast);
}

.dt-form-forgot:hover {
    color: var(--dt-primary);
}

/* Submit Button */
.dt-form-submit {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--dt-space-sm);
    font-family: var(--dt-font-family);
    font-size: var(--dt-font-size-base);
    font-weight: 700;
    color: var(--dt-primary-dark);
    background: var(--dt-gradient-secondary);
    border: none;
    border-radius: var(--dt-radius-lg);
    cursor: pointer;
    transition: all var(--dt-transition-fast);
    box-shadow: 0 4px 15px rgba(253, 181, 21, 0.35);
}

.dt-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 181, 21, 0.45);
}

.dt-form-submit:active {
    transform: translateY(0);
}

.dt-form-submit-register {
    background: var(--dt-gradient-primary);
    color: var(--dt-white);
    box-shadow: 0 4px 15px rgba(10, 35, 66, 0.25);
}

.dt-form-submit-register:hover {
    box-shadow: 0 6px 20px rgba(10, 35, 66, 0.35);
}

/* Notice */
.dt-form-notice {
    display: flex;
    align-items: center;
    gap: var(--dt-space-sm);
    padding: var(--dt-space-md);
    background: rgba(253, 181, 21, 0.1);
    border: 1px solid rgba(253, 181, 21, 0.25);
    border-radius: var(--dt-radius-md);
    font-size: var(--dt-font-size-sm);
    color: var(--dt-text-dark);
    margin-bottom: var(--dt-space-lg);
}

.dt-form-notice i {
    color: var(--dt-secondary-dark);
}

/* WooCommerce Notices inside login */
.woocommerce .woocommerce-form-login .woocommerce-error,
.woocommerce .woocommerce-form-login .woocommerce-info,
.woocommerce .woocommerce-form-login .woocommerce-message,
.dt-login-form-wrapper .woocommerce-error,
.dt-login-form-wrapper .woocommerce-info,
.dt-login-form-wrapper .woocommerce-message {
    border-radius: var(--dt-radius-md);
    font-size: var(--dt-font-size-sm);
    margin-bottom: var(--dt-space-lg);
}

/* ============================================
   Cart Page
   ============================================ */
.dt-cart-layout {
    display: flex;
    gap: var(--dt-space-2xl);
    align-items: flex-start;
}

.dt-cart-products {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Cart Item Card */
.dt-cart-item {
    display: flex;
    align-items: center;
    gap: var(--dt-space-lg);
    background: var(--dt-white);
    border: 1px solid var(--dt-border);
    border-radius: var(--dt-radius-xl);
    padding: var(--dt-space-lg);
    position: relative;
    transition: box-shadow var(--dt-transition-fast);
}

.dt-cart-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.dt-cart-item-remove {
    position: absolute;
    top: 12px;
    left: 12px;
}

.dt-cart-item-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: var(--dt-radius-lg);
    overflow: hidden;
    background: var(--dt-bg);
}

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

.dt-cart-item-details {
    flex: 1;
    min-width: 0;
}

.dt-cart-item-name {
    font-weight: 700;
    font-size: var(--dt-font-size-sm);
    color: var(--dt-text-dark);
    margin-bottom: 6px;
    line-height: 1.6;
}

.dt-cart-item-name a {
    color: var(--dt-text-dark);
    text-decoration: none;
    transition: color var(--dt-transition-fast);
}

.dt-cart-item-name a:hover {
    color: var(--dt-primary);
}

.dt-cart-item-stock {
    display: inline-block;
    font-size: var(--dt-font-size-xs);
    padding: 2px 10px;
    border-radius: var(--dt-radius-full);
    margin-bottom: 6px;
}

.dt-cart-item-stock.out-of-stock {
    background: #FEE2E2;
    color: #DC2626;
}

.dt-cart-item-price {
    font-weight: 700;
    font-size: var(--dt-font-size-sm);
    color: var(--dt-text-dark);
    white-space: nowrap;
    min-width: 100px;
    text-align: center;
}

.dt-cart-item-price-mobile {
    display: none;
}

.dt-cart-item-quantity {
    flex-shrink: 0;
}

.dt-cart-item-subtotal {
    text-align: center;
    min-width: 110px;
    flex-shrink: 0;
}

.dt-cart-item-subtotal-label {
    display: none;
}

.dt-cart-item-subtotal .woocommerce-Price-amount,
.dt-cart-item-subtotal bdi {
    font-size: var(--dt-font-size-base);
    font-weight: 800;
    color: var(--dt-primary);
}

/* Override old table styles */
.woocommerce-cart-form .shop_table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dt-white);
    border-radius: var(--dt-radius-xl);
    overflow: hidden;
    border: 1px solid var(--dt-border);
}

.woocommerce-cart-form thead th {
    background: var(--dt-bg);
    padding: 14px 16px;
    font-size: var(--dt-font-size-sm);
    font-weight: 600;
    color: var(--dt-text-dark);
    border-bottom: 2px solid var(--dt-border);
    text-align: right;
}

.woocommerce-cart-form tbody td {
    padding: 16px;
    border-bottom: 1px solid var(--dt-bg);
    vertical-align: middle;
}

.woocommerce-cart-form .product-thumbnail {
    width: 80px;
}

.woocommerce-cart-form .product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--dt-radius-md);
}

.woocommerce-cart-form .product-name a {
    color: var(--dt-text-dark);
    font-weight: 600;
    font-size: var(--dt-font-size-sm);
    text-decoration: none;
}

.woocommerce-cart-form .product-name a:hover {
    color: var(--dt-primary);
}

.woocommerce-cart-form .product-price,
.woocommerce-cart-form .product-subtotal {
    font-weight: 700;
    color: var(--dt-text-dark);
    font-size: var(--dt-font-size-sm);
    white-space: nowrap;
}

.dt-remove-item {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    transition: all var(--dt-transition-fast);
    text-decoration: none;
}

.dt-remove-item:hover {
    background: #FEE2E2;
    color: #EF4444;
}

.dt-qty-wrapper {
    display: inline-flex;
    align-items: stretch;
    height: 40px;
    border: 2px solid var(--dt-border);
    border-radius: var(--dt-radius-md);
    overflow: hidden;
}

.dt-qty-wrapper .dt-qty-btn {
    width: 36px;
    height: 100%;
    border: none;
    background: var(--dt-bg);
    color: var(--dt-text-dark);
    cursor: pointer;
    font-size: 11px;
    transition: all var(--dt-transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dt-qty-wrapper .dt-qty-btn:hover {
    background: var(--dt-primary);
    color: var(--dt-white);
}

.dt-qty-wrapper .dt-qty-input {
    width: 50px;
    height: 100%;
    text-align: center;
    font-size: var(--dt-font-size-sm);
    font-weight: 700;
    border: none;
    border-inline: 1px solid var(--dt-border);
    background: var(--dt-white);
    font-family: var(--dt-font-family);
    -moz-appearance: textfield;
}

.dt-qty-wrapper .dt-qty-input::-webkit-outer-spin-button,
.dt-qty-wrapper .dt-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Cart Sidebar */
.dt-cart-sidebar {
    width: 340px;
    flex-shrink: 0;
    position: sticky;
    top: 140px;
}

.dt-cart-coupon {
    background: var(--dt-white);
    border-radius: var(--dt-radius-xl);
    border: 1px solid var(--dt-border);
    padding: var(--dt-space-xl);
    margin-bottom: var(--dt-space-lg);
}

.dt-coupon-form {
    display: flex;
    gap: 8px;
}

.dt-coupon-input {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid var(--dt-border);
    border-radius: var(--dt-radius-md);
    font-family: var(--dt-font-family);
    font-size: var(--dt-font-size-sm);
    outline: none;
    transition: border-color var(--dt-transition-fast);
}

.dt-coupon-input:focus {
    border-color: var(--dt-secondary);
}

.dt-coupon-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: var(--dt-primary);
    color: var(--dt-white);
    border-radius: var(--dt-radius-md);
    cursor: pointer;
    transition: background var(--dt-transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dt-coupon-btn:hover {
    background: var(--dt-primary-light);
}

.dt-cart-totals {
    background: var(--dt-white);
    border-radius: var(--dt-radius-xl);
    border: 1px solid var(--dt-border);
    padding: var(--dt-space-xl);
}

.dt-cart-totals .shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--dt-space-xl);
}

.dt-cart-totals .shop_table th,
.dt-cart-totals .shop_table td {
    padding: 12px 0;
    border-bottom: 1px solid var(--dt-bg);
    font-size: var(--dt-font-size-sm);
}

.dt-cart-totals .shop_table th {
    font-weight: 500;
    color: var(--dt-text-gray);
    text-align: right;
}

.dt-cart-totals .shop_table td {
    font-weight: 600;
    color: var(--dt-text-dark);
    text-align: left;
}

.dt-cart-totals .order-total th,
.dt-cart-totals .order-total td {
    border-bottom: none;
    padding-top: 16px;
    font-size: var(--dt-font-size-lg);
    font-weight: 700;
    color: var(--dt-primary);
}

.dt-cart-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dt-btn-continue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: var(--dt-bg);
    color: var(--dt-text-dark);
    border-radius: var(--dt-radius-md);
    font-weight: 600;
    font-size: var(--dt-font-size-sm);
    text-decoration: none;
    transition: all var(--dt-transition-fast);
}

.dt-btn-continue:hover {
    background: var(--dt-border);
    color: var(--dt-primary);
}

.dt-btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--dt-secondary);
    color: var(--dt-primary);
    border-radius: var(--dt-radius-md);
    font-weight: 700;
    font-size: var(--dt-font-size-base);
    text-decoration: none;
    transition: all var(--dt-transition-fast);
    border: none;
    cursor: pointer;
    font-family: var(--dt-font-family);
    width: 100%;
}

.dt-btn-checkout:hover {
    background: var(--dt-secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 181, 21, 0.35);
}

/* WooCommerce Cart Notices */
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .woocommerce-message {
    background: #F0F9FF;
    color: var(--dt-primary);
    border: 1px solid #BAE6FD;
    border-radius: var(--dt-radius-md);
    padding: 12px 16px;
    margin-bottom: var(--dt-space-xl);
    font-family: var(--dt-font-family);
    font-size: var(--dt-font-size-sm);
}

.woocommerce-cart .woocommerce-info::before,
.woocommerce-cart .woocommerce-message::before {
    color: var(--dt-primary);
}

/* Cart Empty */
.dt-cart-empty {
    padding: var(--dt-space-4xl) var(--dt-space-xl);
    text-align: center;
}

.dt-cart-empty-inner {
    max-width: 400px;
    margin: 0 auto;
}

.dt-cart-empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--dt-space-xl);
    background: var(--dt-bg);
    border-radius: var(--dt-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px dashed var(--dt-border);
}

.dt-cart-empty-icon i {
    font-size: 48px;
    color: var(--dt-text-light);
}

.dt-cart-empty h2 {
    font-size: var(--dt-font-size-xl);
    font-weight: 700;
    color: var(--dt-text-dark);
    margin-bottom: var(--dt-space-sm);
}

.dt-cart-empty p {
    font-size: var(--dt-font-size-sm);
    color: var(--dt-text-gray);
    margin-bottom: var(--dt-space-xl);
    line-height: 1.8;
}

.dt-cart-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--dt-primary);
    color: var(--dt-white);
    border-radius: var(--dt-radius-md);
    font-weight: 700;
    font-size: var(--dt-font-size-sm);
    text-decoration: none;
    transition: all var(--dt-transition-fast);
    font-family: var(--dt-font-family);
}

.dt-cart-empty-btn:hover {
    background: var(--dt-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 35, 66, 0.25);
}

/* Cart Page */
.dt-cart-page .dt-page-header {
    margin-bottom: var(--dt-space-2xl);
}

.dt-cart-page .dt-page-title {
    font-size: var(--dt-font-size-2xl);
    font-weight: 800;
    color: var(--dt-text-dark);
    position: relative;
    padding-bottom: 12px;
}

.dt-cart-page .dt-page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 4px;
    background: var(--dt-secondary);
    border-radius: 2px;
}

/* ============================================
   Checkout Page
   ============================================ */
.dt-checkout-wrap {
    max-width: 100%;
}

.dt-checkout-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: var(--dt-space-2xl);
    align-items: flex-start;
}

.dt-checkout-card {
    background: var(--dt-white);
    border: 1px solid var(--dt-border);
    border-radius: var(--dt-radius-xl);
    padding: var(--dt-space-xl);
}

.dt-checkout-card-sticky {
    position: sticky;
    top: 140px;
}

.dt-checkout-login-notice {
    background: #F0F9FF;
    border: 1px solid #BAE6FD;
    border-radius: var(--dt-radius-md);
    padding: 16px 20px;
    margin-bottom: var(--dt-space-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--dt-font-size-sm);
}

.dt-checkout-login-notice i {
    color: var(--dt-primary);
    font-size: 18px;
}

.dt-checkout-login-notice a {
    color: var(--dt-primary);
    font-weight: 600;
    text-decoration: underline;
}

.dt-checkout-title {
    font-size: var(--dt-font-size-xl);
    font-weight: 700;
    color: var(--dt-text-dark);
    margin: 0 0 var(--dt-space-xl) 0;
    padding-bottom: var(--dt-space-md);
    border-bottom: 2px solid var(--dt-bg);
    display: flex;
    align-items: center;
    gap: var(--dt-space-md);
}

.dt-checkout-title i {
    color: var(--dt-secondary);
}

.dt-checkout-field {
    margin-bottom: var(--dt-space-md);
}

.dt-checkout-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dt-text-dark);
    font-size: var(--dt-font-size-sm);
}

/* Checkout col2_set (name fields side by side) */
#customer_details .col2_set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--dt-space-md);
    margin-bottom: var(--dt-space-md);
}

#customer_details .col2_set .col-1,
#customer_details .col2_set .col-2 {
    width: 100%;
    min-width: 0;
}

.woocommerce-form-coupon label,
.woocommerce-form-login label {
    font-size: var(--dt-font-size-sm);
    font-weight: 600;
}

/* WooCommerce Checkout Overrides */
.woocommerce-checkout-review-order {
    width: 100%;
}

.woocommerce-checkout-review-order-table {
    width: 100%;
}

/* Unified form field styles for checkout */
#customer_details input.input-text,
#customer_details input[type="text"],
#customer_details input[type="email"],
#customer_details input[type="tel"],
#customer_details input[type="number"],
#customer_details input[type="password"],
#customer_details select,
#customer_details textarea,
.woocommerce-checkout-billing input.input-text,
.woocommerce-checkout-billing select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--dt-border);
    border-radius: var(--dt-radius-md);
    font-family: var(--dt-font-family);
    font-size: var(--dt-font-size-sm);
    color: var(--dt-text-dark);
    background: var(--dt-white);
    transition: border-color var(--dt-transition-fast);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748B' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 14px center;
    background-size: 12px;
}

#customer_details select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748B' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 14px center;
    background-size: 12px;
    padding-left: 36px;
}

#customer_details input:focus,
#customer_details select:focus,
#customer_details textarea:focus,
.woocommerce-checkout-billing input:focus,
.woocommerce-checkout-billing select:focus {
    outline: none;
    border-color: var(--dt-secondary);
    box-shadow: 0 0 0 3px rgba(253, 181, 21, 0.15);
}

#customer_details .form-row {
    margin-bottom: var(--dt-space-md);
}

#customer_details .form-row label {
    font-weight: 600;
    font-size: var(--dt-font-size-sm);
    color: var(--dt-text-dark);
    margin-bottom: 6px;
}

#customer_details .select2-container--default .select2-selection--single {
    height: 46px;
    border: 2px solid var(--dt-border);
    border-radius: var(--dt-radius-md);
    padding: 0 16px;
    font-family: var(--dt-font-family);
    font-size: var(--dt-font-size-sm);
}

#customer_details .select2-container--default .select2-selection--single:focus {
    border-color: var(--dt-secondary);
    box-shadow: 0 0 0 3px rgba(253, 181, 21, 0.15);
    outline: none;
}

#customer_details .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 42px;
    color: var(--dt-text-dark);
    font-family: var(--dt-font-family);
}

#customer_details .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px;
}
    border-collapse: collapse;
    margin-bottom: var(--dt-space-xl);
}

.woocommerce-checkout-review-order-table th {
    background: var(--dt-bg);
    padding: 12px 16px;
    font-size: var(--dt-font-size-sm);
    font-weight: 600;
    color: var(--dt-text-dark);
    text-align: right;
}

.woocommerce-checkout-review-order-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--dt-bg);
    font-size: var(--dt-font-size-sm);
}

.woocommerce-checkout-review-order-table tr.order-total td {
    border-top: 2px solid var(--dt-border);
    font-weight: 700;
    color: var(--dt-primary);
    font-size: var(--dt-font-size-lg);
}

#payment {
    background: var(--dt-white);
    border: 1px solid var(--dt-border);
    border-radius: var(--dt-radius-xl);
    padding: var(--dt-space-xl);
}

#payment ul.payment_methods {
    border-bottom: 1px solid var(--dt-bg);
    margin-bottom: var(--dt-space-xl);
    padding: 0;
}

#payment ul.payment_methods li {
    padding: 12px 0;
}

#payment ul.payment_methods li label {
    font-size: var(--dt-font-size-sm);
    font-weight: 500;
}

#payment .place-order {
    margin: 0;
}

#payment .place-order button {
    width: 100%;
    padding: 16px;
    background: var(--dt-secondary);
    color: var(--dt-primary);
    border: none;
    border-radius: var(--dt-radius-md);
    font-family: var(--dt-font-family);
    font-size: var(--dt-font-size-base);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--dt-transition-fast);
}

#payment .place-order button:hover {
    background: var(--dt-secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 181, 21, 0.35);
}

/* ============================================
   Wishlist Page
   ============================================ */
.dt-wishlist-login,
.dt-wishlist-empty {
    text-align: center;
    padding: 80px 20px;
}

.dt-wishlist-login-inner,
.dt-wishlist-empty-inner {
    max-width: 400px;
    margin: 0 auto;
}

.dt-wishlist-login h2,
.dt-wishlist-empty h2 {
    font-size: var(--dt-font-size-xl);
    font-weight: 700;
    color: var(--dt-text-dark);
    margin-bottom: var(--dt-space-md);
}

.dt-wishlist-login p,
.dt-wishlist-empty p {
    color: var(--dt-text-gray);
    margin-bottom: var(--dt-space-lg);
}

/* ============================================
   404 Page
   ============================================ */
.dt-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dt-404 .container {
    text-align: center;
}

.dt-404-content {
    max-width: 500px;
    margin: 0 auto;
    padding: var(--dt-space-4xl) 0;
}

.dt-404-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--dt-space-2xl);
}

.dt-404-icon i {
    font-size: 36px;
    color: #D97706;
}

.dt-404-title {
    font-size: 72px;
    font-weight: 900;
    color: var(--dt-primary);
    line-height: 1;
    margin-bottom: var(--dt-space-md);
    letter-spacing: -2px;
}

.dt-404-subtitle {
    font-size: var(--dt-font-size-2xl);
    font-weight: 700;
    color: var(--dt-text-dark);
    margin-bottom: var(--dt-space-md);
}

.dt-404-desc {
    font-size: var(--dt-font-size-base);
    color: var(--dt-text-gray);
    line-height: 1.8;
    margin-bottom: var(--dt-space-2xl);
}

.dt-404-actions {
    display: flex;
    gap: var(--dt-space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--dt-space-3xl);
}

.dt-404-search {
    max-width: 400px;
    margin: 0 auto;
}

.dt-404-search h3 {
    font-size: var(--dt-font-size-base);
    font-weight: 600;
    color: var(--dt-text-dark);
    margin-bottom: var(--dt-space-md);
}

.dt-404-search .search-form {
    display: flex;
    background: var(--dt-white);
    border: 2px solid var(--dt-border);
    border-radius: var(--dt-radius-xl);
    overflow: hidden;
    transition: border-color var(--dt-transition-fast);
}

.dt-404-search .search-form:focus-within {
    border-color: var(--dt-secondary);
}

.dt-404-search .search-field {
    flex: 1;
    padding: 14px 20px;
    font-family: var(--dt-font-family);
    font-size: var(--dt-font-size-sm);
    border: none;
    outline: none;
    background: transparent;
    direction: rtl;
}

.dt-404-search .search-submit {
    padding: 14px 24px;
    background: var(--dt-secondary);
    border: none;
    cursor: pointer;
    color: var(--dt-primary);
    font-size: var(--dt-font-size-lg);
    transition: background var(--dt-transition-fast);
}

.dt-404-search .search-submit:hover {
    background: var(--dt-secondary-light);
}

/* ============================================
   Blog Page Layout
   ============================================ */
.dt-blog-layout {
    display: flex;
    gap: var(--dt-space-2xl);
    align-items: flex-start;
}

.dt-blog-layout .dt-blog-posts,
.dt-blog-layout .dt-blog-page {
    flex: 1;
    min-width: 0;
}

.dt-blog-layout .dt-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 140px;
}

.dt-blog-posts {
    display: flex;
    flex-direction: column;
    gap: var(--dt-space-xl);
}

.dt-blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: var(--dt-space-3xl);
}

.dt-blog-pagination .nav-links {
    display: flex;
    gap: 8px;
}

.dt-blog-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--dt-border);
    border-radius: var(--dt-radius-md);
    font-size: var(--dt-font-size-sm);
    font-weight: 500;
    color: var(--dt-text-gray);
    background: var(--dt-white);
    text-decoration: none;
    transition: all var(--dt-transition-fast);
}

.dt-blog-pagination .page-numbers:hover {
    border-color: var(--dt-primary);
    color: var(--dt-primary);
}

.dt-blog-pagination .page-numbers.current {
    background: var(--dt-primary);
    color: var(--dt-white);
    border-color: var(--dt-primary);
}

/* ============================================
   Single Post
   ============================================ */
.dt-single-article {
    background: var(--dt-white);
    border-radius: var(--dt-radius-xl);
    border: 1px solid var(--dt-border);
    overflow: hidden;
}

.dt-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--dt-space-lg);
    padding: var(--dt-space-xl) var(--dt-space-2xl);
    border-bottom: 1px solid var(--dt-bg);
    font-size: var(--dt-font-size-sm);
    color: var(--dt-text-gray);
}

.dt-post-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dt-post-meta i {
    color: var(--dt-secondary);
    font-size: 12px;
}

.dt-post-featured-image {
    overflow: hidden;
}

.dt-post-featured-image img {
    width: 100%;
    height: auto;
}

.dt-post-content {
    padding: var(--dt-space-2xl);
    line-height: 2;
    color: var(--dt-text-dark);
}

.dt-post-content p {
    margin-bottom: var(--dt-space-lg);
}

.dt-post-content img {
    border-radius: var(--dt-radius-lg);
    margin: var(--dt-space-lg) 0;
}

.dt-post-footer {
    padding: var(--dt-space-xl) var(--dt-space-2xl);
    border-top: 1px solid var(--dt-bg);
}

.dt-post-share {
    display: flex;
    align-items: center;
    gap: var(--dt-space-md);
    font-size: var(--dt-font-size-sm);
    color: var(--dt-text-gray);
}

.dt-post-share a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dt-bg);
    color: var(--dt-text-gray);
    transition: all var(--dt-transition-fast);
}

.dt-post-share a:hover {
    background: var(--dt-primary);
    color: var(--dt-white);
}

/* Post Navigation */
.dt-post-navigation {
    display: flex;
    gap: var(--dt-space-xl);
    margin: var(--dt-space-2xl) 0;
}

.dt-post-navigation a {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: var(--dt-space-lg);
    background: var(--dt-white);
    border: 1px solid var(--dt-border);
    border-radius: var(--dt-radius-lg);
    text-decoration: none;
    transition: all var(--dt-transition-fast);
}

.dt-post-navigation a:hover {
    border-color: var(--dt-secondary);
    box-shadow: var(--dt-shadow-md);
}

.dt-nav-label {
    font-size: var(--dt-font-size-xs);
    color: var(--dt-text-light);
}

.dt-nav-title {
    font-size: var(--dt-font-size-sm);
    font-weight: 600;
    color: var(--dt-text-dark);
}

/* ============================================
   Page Content
   ============================================ */
.dt-page-content {
    background: var(--dt-white);
    border-radius: var(--dt-radius-xl);
    border: 1px solid var(--dt-border);
    padding: var(--dt-space-3xl);
}

.dt-page-content h1,
.dt-page-content h2,
.dt-page-content h3,
.dt-page-content h4,
.dt-page-content h5,
.dt-page-content h6 {
    color: var(--dt-text-dark);
    margin-bottom: var(--dt-space-lg);
}

.dt-page-content p {
    line-height: 2;
    color: var(--dt-text-gray);
    margin-bottom: var(--dt-space-lg);
}

.dt-page-content img {
    border-radius: var(--dt-radius-lg);
    margin: var(--dt-space-lg) 0;
}

.dt-page-content ul,
.dt-page-content ol {
    padding-right: var(--dt-space-xl);
    margin-bottom: var(--dt-space-lg);
}

.dt-page-content li {
    line-height: 2;
    color: var(--dt-text-gray);
    margin-bottom: var(--dt-space-sm);
}

.dt-page-content a {
    color: var(--dt-primary);
    font-weight: 600;
    text-decoration: underline;
}

.dt-page-content a:hover {
    color: var(--dt-secondary);
}

/* ============================================
   Comments
   ============================================ */
.dt-comments {
    margin-top: var(--dt-space-3xl);
    padding-top: var(--dt-space-2xl);
    border-top: 1px solid var(--dt-border);
}

.dt-comments-title {
    font-size: var(--dt-font-size-xl);
    font-weight: 700;
    margin-bottom: var(--dt-space-xl);
}

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

.commentlist .comment {
    padding: var(--dt-space-xl);
    background: var(--dt-bg);
    border-radius: var(--dt-radius-lg);
    margin-bottom: var(--dt-space-md);
}

.dt-comment-header {
    display: flex;
    align-items: center;
    gap: var(--dt-space-md);
    margin-bottom: var(--dt-space-md);
}

.dt-comment-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.dt-comment-author {
    font-weight: 600;
    color: var(--dt-text-dark);
    font-size: var(--dt-font-size-sm);
}

.dt-comment-date {
    font-size: var(--dt-font-size-xs);
    color: var(--dt-text-light);
    display: flex;
    gap: var(--dt-space-sm);
}

.dt-comment-body {
    font-size: var(--dt-font-size-sm);
    color: var(--dt-text-gray);
    line-height: 1.8;
}

.dt-comment-reply {
    margin-top: var(--dt-space-md);
}

.dt-comment-reply a {
    font-size: var(--dt-font-size-xs);
    color: var(--dt-primary);
    font-weight: 600;
}

/* ============================================
   Track Order Page
   ============================================ */
.dt-track-order-wrapper {
    display: flex;
    justify-content: center;
    padding: var(--dt-space-xl) 0 var(--dt-space-3xl);
}

.dt-track-order-card {
    width: 100%;
    max-width: 700px;
    background: var(--dt-white);
    border-radius: var(--dt-radius-2xl);
    border: 1px solid var(--dt-border);
    box-shadow: var(--dt-shadow-xl);
    overflow: hidden;
}

.dt-track-order-header {
    background: var(--dt-gradient-primary);
    padding: var(--dt-space-2xl) var(--dt-space-xl);
    text-align: center;
}

.dt-track-order-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--dt-space-lg);
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--dt-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.25);
}

.dt-track-order-icon i {
    font-size: 30px;
    color: var(--dt-secondary);
}

.dt-track-order-title {
    font-size: var(--dt-font-size-xl);
    font-weight: 700;
    color: var(--dt-white);
    margin: 0 0 var(--dt-space-sm);
}

.dt-track-order-desc {
    font-size: var(--dt-font-size-sm);
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Form */
.dt-track-order-form-wrapper {
    padding: var(--dt-space-xl);
}

.dt-track-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--dt-space-lg);
    margin-bottom: var(--dt-space-xl);
}

.dt-track-form-group label {
    display: flex;
    align-items: center;
    gap: var(--dt-space-sm);
    font-size: var(--dt-font-size-sm);
    font-weight: 600;
    color: var(--dt-text-dark);
    margin-bottom: var(--dt-space-sm);
}

.dt-track-form-group label i {
    color: var(--dt-primary);
    font-size: 13px;
}

.dt-track-form-group input {
    width: 100%;
    height: 48px;
    padding: 0 var(--dt-space-lg);
    font-family: var(--dt-font-family);
    font-size: var(--dt-font-size-sm);
    color: var(--dt-text-dark);
    background: var(--dt-bg);
    border: 2px solid transparent;
    border-radius: var(--dt-radius-lg);
    outline: none;
    transition: all var(--dt-transition-fast);
    box-sizing: border-box;
}

.dt-track-form-group input::placeholder {
    color: var(--dt-text-light);
}

.dt-track-form-group input:focus {
    border-color: var(--dt-primary);
    background: var(--dt-white);
    box-shadow: 0 0 0 4px rgba(10, 35, 66, 0.08);
}

.dt-track-submit {
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--dt-space-sm);
    font-family: var(--dt-font-family);
    font-size: var(--dt-font-size-base);
    font-weight: 700;
    color: var(--dt-primary-dark);
    background: var(--dt-gradient-secondary);
    border: none;
    border-radius: var(--dt-radius-lg);
    cursor: pointer;
    transition: all var(--dt-transition-fast);
    box-shadow: 0 4px 15px rgba(253, 181, 21, 0.35);
}

.dt-track-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 181, 21, 0.45);
}

/* Result */
.dt-track-result {
    margin-bottom: var(--dt-space-xl);
    padding-bottom: var(--dt-space-xl);
    border-bottom: 2px solid var(--dt-bg);
}

.dt-track-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--dt-space-xl);
    flex-wrap: wrap;
    gap: var(--dt-space-md);
}

.dt-track-status-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--dt-space-sm);
    padding: 8px 16px;
    border-radius: var(--dt-radius-full);
    font-size: var(--dt-font-size-sm);
    font-weight: 700;
}

.dt-track-order-number {
    font-size: var(--dt-font-size-sm);
    color: var(--dt-text-gray);
}

.dt-track-order-number strong {
    color: var(--dt-text-dark);
}

/* Timeline */
.dt-track-timeline {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--dt-space-xl);
    position: relative;
    padding: 0 10px;
}

.dt-track-timeline::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 30px;
    right: 30px;
    height: 3px;
    background: var(--dt-bg);
    z-index: 0;
}

.dt-timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--dt-space-sm);
    flex: 1;
    position: relative;
    z-index: 1;
}

.dt-timeline-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--dt-bg);
    border: 3px solid var(--dt-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--dt-text-light);
    transition: all var(--dt-transition-fast);
}

.dt-timeline-step.done .dt-timeline-dot {
    background: var(--dt-success);
    border-color: var(--dt-success);
    color: var(--dt-white);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.dt-timeline-step.current .dt-timeline-dot {
    background: var(--dt-primary);
    border-color: var(--dt-primary);
    color: var(--dt-white);
    box-shadow: 0 2px 12px rgba(10, 35, 66, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 2px 8px rgba(10, 35, 66, 0.3); }
    50% { box-shadow: 0 2px 16px rgba(10, 35, 66, 0.5); }
}

.dt-timeline-content {
    text-align: center;
}

.dt-timeline-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--dt-text-gray);
}

.dt-timeline-step.done .dt-timeline-label,
.dt-timeline-step.current .dt-timeline-label {
    color: var(--dt-text-dark);
}

.dt-timeline-date {
    display: block;
    font-size: 10px;
    color: var(--dt-text-light);
    margin-top: 2px;
}

/* Details */
.dt-track-details {
    background: var(--dt-bg);
    border-radius: var(--dt-radius-lg);
    padding: var(--dt-space-lg);
    margin-bottom: var(--dt-space-lg);
}

.dt-track-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--dt-border);
}

.dt-track-detail-row:last-child {
    border-bottom: none;
}

.dt-track-detail-label {
    font-size: var(--dt-font-size-sm);
    color: var(--dt-text-gray);
}

.dt-track-detail-value {
    font-size: var(--dt-font-size-sm);
    font-weight: 600;
    color: var(--dt-text-dark);
}

.dt-track-view-orders {
    display: inline-flex;
    align-items: center;
    gap: var(--dt-space-sm);
    padding: 10px 20px;
    background: var(--dt-primary);
    color: var(--dt-white);
    border-radius: var(--dt-radius-md);
    font-size: var(--dt-font-size-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--dt-transition-fast);
}

.dt-track-view-orders:hover {
    background: var(--dt-primary-light);
    color: var(--dt-white);
    transform: translateY(-1px);
}

/* Error */
.dt-track-error {
    text-align: center;
    padding: var(--dt-space-xl);
    margin-bottom: var(--dt-space-xl);
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: var(--dt-radius-lg);
}

.dt-track-error i {
    font-size: 36px;
    color: var(--dt-danger);
    margin-bottom: var(--dt-space-md);
}

.dt-track-error p {
    font-size: var(--dt-font-size-sm);
    color: var(--dt-text-dark);
    margin: 0;
}
