/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary-navy: #0B1C2C;
      --accent-cyan: #00C2FF;
      --accent-cyan-hover: #00A8E0;
      --bg-white: #FFFFFF;
      --bg-light: #F7F9FC;
      --bg-gray: #F1F5F9;
      --text-dark: #1A1A1A;
      --text-gray: #6B7280;
      --text-light: #9CA3AF;
      --border-light: #E5E7EB;
      --success-green: #10B981;
      --warning-orange: #F59E0B;
      --rating-gold: #FBBF24;
      --danger-red: #EF4444;
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
      --shadow-lg: 0 20px 32px -8px rgba(11, 28, 44, 0.12);
      --radius-card: 16px;
      --radius-btn: 60px;
    }

    body {
 
      background: var(--bg-white);
      color: var(--text-dark);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    .container {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Typography */
    h1 { font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.2; }
    h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 700; letter-spacing: -0.02em; }
    h3 { font-size: 1.25rem; font-weight: 600; }
    h4 { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

    /* Header */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-light);
      padding: 16px 0;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--primary-navy);
      text-decoration: none;
    }
    .logo span { color: var(--accent-cyan); }

    .nav-links { display: flex; gap: 28px; }
    .nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 500; }
    .nav-links a:hover { color: var(--accent-cyan); }

    .header-actions { display: flex; align-items: center; gap: 16px; }
    .cart-icon { position: relative; color: var(--primary-navy); font-size: 1.3rem; }
    .cart-count {
      position: absolute; top: -8px; right: -8px;
      background: var(--accent-cyan); color: var(--primary-navy);
      font-size: 0.7rem; font-weight: 700; width: 18px; height: 18px;
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
    }

    /* Buttons */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 12px 28px; border-radius: var(--radius-btn);
      font-weight: 600; font-size: 1rem; text-decoration: none;
      transition: all 0.2s; cursor: pointer; border: none;
    }
    .btn-primary {
      background: var(--accent-cyan); color: var(--primary-navy);
      box-shadow: 0 4px 12px rgba(0, 194, 255, 0.25);
    }
    .btn-primary:hover { background: var(--accent-cyan-hover); transform: translateY(-2px); }
    .btn-secondary {
      background: transparent; color: var(--primary-navy);
      border: 2px solid var(--border-light);
    }
    .btn-secondary:hover { border-color: var(--accent-cyan); background: var(--bg-light); }
    .btn-outline {
      background: transparent; border: 1.5px solid var(--border-light);
      color: var(--text-dark);
    }
    .btn-large { padding: 16px 36px; font-size: 1.1rem; }
    .btn-block { width: 100%; }
    .btn-small { padding: 8px 16px; font-size: 0.875rem; }

    /* Badges */
    .badge {
      display: inline-block; padding: 4px 12px; border-radius: 40px;
      font-size: 0.8rem; font-weight: 600;
    }
    .badge-success { background: #D1FAE5; color: #065F46; }
    .badge-warning { background: #FEF3C7; color: #92400E; }
    .badge-info { background: #EFF6FF; color: #1D4ED8; }
    .badge-bestseller { background: var(--warning-orange); color: white; }
    .badge-new { background: var(--accent-cyan); color: var(--primary-navy); }

    /* Breadcrumb */
    .breadcrumb {
      padding: 20px 0;
      color: var(--text-gray); font-size: 0.9rem;
    }
    .breadcrumb a { color: var(--text-gray); text-decoration: none; }
    .breadcrumb a:hover { color: var(--accent-cyan); }

    /* Product Layout */
    .ddbuilder-element-product_layout_row .ddbuilder-rowll  {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 48px;
      margin: 20px 0 60px;
    }

    /* Gallery */
    .gallery-main {
      background: var(--bg-light);
      border-radius: var(--radius-card);
      aspect-ratio: 16/9;
      display: flex; align-items: center; justify-content: center;
      border: 1px solid var(--border-light);
      margin-bottom: 16px;
      overflow: hidden;
    }
    .gallery-main img { max-width: 100%; height: auto; }
    .gallery-thumbs {
      display: flex; gap: 12px;
    }
    .gallery-thumb {
      width: 80px; height: 60px;
      background: var(--bg-light); border-radius: 12px;
      border: 2px solid transparent; cursor: pointer;
    }
    .gallery-thumb.active { border-color: var(--accent-cyan); }

    /* Product Info */
    .product-title {
      font-size: 2rem; font-weight: 800; margin-bottom: 8px;
    }
    .product-meta {
      display: flex; align-items: center; gap: 16px;
       flex-wrap: wrap;
    }
    .rating {
      display: flex; align-items: center; gap: 8px;
    }
    .stars { color: var(--rating-gold); letter-spacing: 2px; }
    .rating-count { color: var(--text-gray); font-size: 0.9rem; }

    /* Compatibility Tags */
    .compatibility-tags {
      display: flex; flex-wrap: wrap; gap: 8px;
      margin: 16px 0;
    }
    .compat-tag {
      background: var(--bg-gray); padding: 6px 14px;
      border-radius: 40px; font-size: 0.8rem; font-weight: 500;
      display: flex; align-items: center; gap: 6px;
    }
    .compat-tag i { color: var(--success-green); }

    /* Version History Table */
    .version-table {
      width: 100%; border-collapse: collapse;
      margin: 16px 0; font-size: 0.9rem;
    }
    .version-table th {
      text-align: left; padding: 12px 8px;
      background: var(--bg-gray); font-weight: 600;
    }
    .version-table td {
      padding: 12px 8px; border-bottom: 1px solid var(--border-light);
    }
    .version-table tr:last-child td { border-bottom: none; }

    /* Tabs */
    .product-tabs {
      margin: 48px 0 32px;
      border-bottom: 2px solid var(--border-light);
    }
    .tab-nav {
      display: flex; gap: 32px;
    }
    .tab-link {
      padding: 16px 0; font-weight: 600; color: var(--text-gray);
      cursor: pointer; border-bottom: 3px solid transparent;
      margin-bottom: -2px;
    }
    .tab-link.active {
      color: var(--primary-navy); border-bottom-color: var(--accent-cyan);
    }

    .tab-content { padding: 32px 0; }
    .tab-pane { display: none; }
    .tab-pane.active { display: block; }

    /* Feature Grid */
    .feature-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 24px; margin: 24px 0;
    }
    .feature-item {
      display: flex; gap: 16px;
    }
    .feature-icon {
      width: 48px; height: 48px; background: var(--bg-light);
      border-radius: 12px; display: flex; align-items: center; justify-content: center;
      color: var(--accent-cyan); font-size: 1.3rem; flex-shrink: 0;
    }

    /* Buy Box (Sticky) */
    .buy-box {
      background: var(--bg-white); border-radius: var(--radius-card);
      padding: 28px; border: 1px solid var(--border-light);
      box-shadow: var(--shadow-md); position: sticky; top: 100px;
    }
    .price-section {
      margin-bottom: 24px;
    }
    .purchase-price {
      font-size: 2.5rem; font-weight: 800; color: var(--primary-navy);
    }
    .maintenance-price {
      color: var(--text-gray); font-size: 0.95rem;
      margin-top: 4px;
    }
    .price-breakdown {
      background: var(--bg-light); border-radius: 12px;
      padding: 16px; margin: 20px 0;
    }
    .price-row {
      display: flex; justify-content: space-between;
      padding: 8px 0;
    }
    .price-row.total {
      border-top: 2px solid var(--border-light);
      margin-top: 8px; padding-top: 16px; font-weight: 700; font-size: 1.1rem;
    }

    /* Trust Badges */
    .trust-badges {
      display: flex; gap: 16px; margin-top: 20px;
      padding-top: 20px; border-top: 1px solid var(--border-light);
    }
    .trust-badge {
      display: flex; align-items: center; gap: 6px;
      font-size: 0.8rem; color: var(--text-gray);
    }

    /* Support Info */
    .support-info {
      background: var(--bg-light); border-radius: 12px;
      padding: 20px; margin: 20px 0;
    }
    .support-item {
      display: flex; gap: 12px; margin-bottom: 12px;
    }

    /* Reviews */
    .review-card {
      border-bottom: 1px solid var(--border-light);
      padding: 24px 0;
    }
    .review-header {
      display: flex; justify-content: space-between;
      margin-bottom: 8px;
    }
    .reviewer { font-weight: 600; }
    .review-date { color: var(--text-light); font-size: 0.85rem; }
    .review-verified {
      color: var(--success-green); font-size: 0.8rem;
      margin-left: 12px;
    }

    /* FAQ Accordion */
    .faq-item {
      border-bottom: 1px solid var(--border-light);
      padding: 20px 0;
    }
    .faq-question {
      font-weight: 600; display: flex; justify-content: space-between;
      cursor: pointer;
    }
    .faq-answer {
      margin-top: 16px; color: var(--text-gray);
    }

    /* Footer */
    .footer {
      background: var(--primary-navy); color: white;
      padding: 60px 0 30px; margin-top: 60px;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      gap: 40px;
    }
    .footer h4 { color: white; margin-bottom: 20px; }
    .footer a {
      display: block; color: #9CA3AF; text-decoration: none;
      margin-bottom: 12px; font-size: 0.9rem;
    }
    .footer a:hover { color: var(--accent-cyan); }
    .footer-bottom {
      display: flex; justify-content: space-between;
      padding-top: 40px; margin-top: 40px;
      border-top: 1px solid #1E3A5F; color: #9CA3AF;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .product-layout { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .feature-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .tab-nav { flex-wrap: wrap; gap: 16px; }
    }

    /* Utilities */
    .text-center { text-align: center; }
    .text-success { color: var(--success-green); }
    .mb-1 { margin-bottom: 8px; }
    .mb-2 { margin-bottom: 16px; }
    .mb-3 { margin-bottom: 24px; }
    .mb-4 { margin-bottom: 32px; }
    .mt-4 { margin-top: 32px; }
    .flex { display: flex; gap: 16px; flex-wrap: wrap; }
    .justify-between { justify-content: space-between; }
    .align-center { align-items: center; }

    /* */ 
.product-miniature-grid .product-price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-gray);
}
 /* ============================================
       GLOBAL DESIGN SYSTEM — MYPRESTASTORE
       PrestaShop 9/10 + DDBuilder Compatible
       ============================================ */
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary-navy: #0B1C2C;
      --accent-cyan: #00C2FF;
      --accent-cyan-hover: #00A8E0;
      --bg-white: #FFFFFF;
      --bg-light: #F7F9FC;
      --text-dark: #1A1A1A;
      --text-gray: #6B7280;
      --border-light: #E5E7EB;
      --success-green: #10B981;
      --warning-yellow: #F59E0B;
      --rating-gold: #FBBF24;
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.02);
      --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06), 0 4px 8px rgba(0, 0, 0, 0.03);
      --shadow-lg: 0 20px 32px -8px rgba(11, 28, 44, 0.12);
      --radius-card: 16px;
      --radius-btn: 60px;
      --radius-sm: 12px;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--bg-white);
      color: var(--text-dark);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    .container {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .container-fluid {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Typography */
    h1 {
      font-size: clamp(2.5rem, 6vw, 4rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.15;
    }

    h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    h3 {
      font-size: 1.5rem;
      font-weight: 600;
      letter-spacing: -0.01em;
    }

    h4 {
      font-size: 1.25rem;
      font-weight: 600;
    }

    p {
      color: var(--text-gray);
    }

    .text-small {
      font-size: 0.875rem;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 28px;
      border-radius: var(--radius-btn);
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.2s ease;
      cursor: pointer;
      border: none;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--accent-cyan);
      color: var(--primary-navy);
      box-shadow: 0 4px 12px rgba(0, 194, 255, 0.25);
    }

    .btn-primary:hover {
      background: var(--accent-cyan-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 194, 255, 0.35);
    }

    .btn-secondary {
      background: transparent;
      color: var(--primary-navy);
      border: 2px solid var(--border-light);
    }

    .btn-secondary:hover {
      border-color: var(--accent-cyan);
      background: var(--bg-light);
    }

    .btn-outline-light {
      background: transparent;
      color: var(--primary-navy);
      border: 1.5px solid var(--border-light);
    }

    .btn-outline-light:hover {
      border-color: var(--accent-cyan);
    }

    .btn-block {
      width: 100%;
    }

    .btn-small {
      padding: 8px 16px;
      font-size: 0.875rem;
    }

    /* Badges */
    .badge {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 40px;
      font-size: 0.8rem;
      font-weight: 600;
      background: var(--bg-light);
      color: var(--primary-navy);
    }

    .badge-success {
      background: #D1FAE5;
      color: #065F46;
    }

    .badge-new {
      background: var(--accent-cyan);
      color: var(--primary-navy);
    }

    .badge-bestseller {
      background: var(--warning-yellow);
      color: var(--primary-navy);
    }

    /* Rating Stars */
    .rating {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .stars {
      color: var(--rating-gold);
      letter-spacing: 2px;
    }

    .rating-count {
      color: var(--text-gray);
      font-size: 0.875rem;
    }

    /* ============================================
       GLOBAL HEADER — Sticky, Mega Menu Ready
       ============================================ */
    .global-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-light);
      padding: 16px 0;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--primary-navy);
      text-decoration: none;
    }

    .logo span {
      color: var(--accent-cyan);
    }

    /* Mega Menu Simulation */
    .mega-menu {
      display: flex;
      gap: 32px;
      font-weight: 500;
    }

    .mega-menu a {
      text-decoration: none;
      color: var(--text-dark);
      font-size: 1rem;
      transition: color 0.15s;
    }

    .mega-menu a:hover {
      color: var(--accent-cyan);
    }

    /* Search Bar */
    .search-wrapper {
      flex: 1;
      max-width: 360px;
    }

    .search-input {
      width: 100%;
      padding: 12px 20px;
      padding-left: 44px;
      border: 1.5px solid var(--border-light);
      border-radius: var(--radius-btn);
      font-size: 0.95rem;
      background: var(--bg-white) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%236B7280" stroke-width="2"><circle cx="11" cy="11" r="8"/><line x1="21" y1="21" x2="16.65" y2="16.65"/></svg>') no-repeat 16px center;
      background-size: 18px;
      transition: border-color 0.2s;
    }

    .search-input:focus {
      outline: none;
      border-color: var(--accent-cyan);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .header-icon {
      color: var(--primary-navy);
      font-size: 1.3rem;
      text-decoration: none;
      position: relative;
    }

    .cart-count {
      position: absolute;
      top: -8px;
      right: -8px;
      background: var(--accent-cyan);
      color: var(--primary-navy);
      font-size: 0.7rem;
      font-weight: 700;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* ============================================
       SECTION SPACING
       ============================================ */
    .section {
      padding: 80px 0;
    }

    .section-sm {
      padding: 60px 0;
    }

    .section-lg {
      padding: 100px 0;
    }

    .bg-light {
      background: var(--bg-light);
    }

    .bg-navy {
      background: var(--primary-navy);
      color: white;
    }

    .bg-navy p {
      color: #9CA3AF;
    }

    /* ============================================
       GRID SYSTEMS
       ============================================ */
    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }

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

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

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

    /* ============================================
       PRODUCT CARD (DDBuilder Widget)
       ============================================ */
    .product-card ,.products-grid .product-miniature-default {
      background: var(--bg-white);
      border-radius: var(--radius-card);
      border: 1px solid var(--border-light);
      overflow: hidden;
      transition: all 0.25s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .product-card:hover ,.products-grid .product-miniature-default:hover{
      box-shadow: var(--shadow-lg);
      border-color: transparent;
      transform: translateY(-4px);
    }

    .product-image,.products-grid .product-miniature-default .thumbnail-container {
      aspect-ratio: 16/10;
      background: linear-gradient(135deg, #F0F4F8 0%, #E2E8F0 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-navy);
      font-weight: 600;
    }
.product-miniature-grid .product-title a {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary-navy)!important;
    text-decoration: none;
}
    .product-content {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .product-title {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--primary-navy);
      text-decoration: none;
    }

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

    .product-benefit {
      font-size: 0.9rem;
      color: var(--text-gray);
      margin-bottom: 12px;
    }

    .product-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: auto;
    }

    .product-price {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary-navy);
    }

    .product-price small {
      font-size: 0.9rem;
      font-weight: 400;
      color: var(--text-gray);
    }

    /* ============================================
       FILTER SIDEBAR (Category Page)
       ============================================ */
    .category-layout {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 40px;
    }

.filter-sidebar, #left-column {
    background: var(--bg-light);
    border-radius: var(--radius-card);
    padding: 24px;
    border: 1px solid var(--border-light);
    height: fit-content;
    max-width: 270px;
    margin-right: 40px;
}

    .filter-group {
      margin-bottom: 28px;
    }

    .filter-group h4 {
      margin-bottom: 16px;
      font-size: 1rem;
      font-weight: 600;
    }

    .filter-option {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
      color: var(--text-gray);
    }

    .filter-option input[type="checkbox"] {
      accent-color: var(--accent-cyan);
      width: 18px;
      height: 18px;
    }

    /* ============================================
       PRODUCT PAGE (Critical)
       ============================================ */
    .product-layout {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 48px;
    }

    .gallery-main {
      background: var(--bg-light);
      border-radius: var(--radius-card);
      aspect-ratio: 16/10;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      border: 1px solid var(--border-light);
    }

    .gallery-thumbs {
      display: flex;
      gap: 12px;
    }

    .gallery-thumb {
      width: 80px;
      height: 60px;
      background: var(--bg-light);
      border-radius: 12px;
      border: 2px solid transparent;
      cursor: pointer;
    }

    .gallery-thumb.active {
      border-color: var(--accent-cyan);
    }

    /* Sticky Buy Box */
    .buy-box {
      background: var(--bg-white);
      border-radius: var(--radius-card);
      padding: 28px;
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-md);
      position: sticky;
      top: 100px;
    }

    .price-large {
      font-size: 3rem;
      font-weight: 800;
      color: var(--primary-navy);
    }

    .trust-badges {
      display: flex;
      gap: 12px;
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid var(--border-light);
    }

    /* ============================================
       CART PAGE
       ============================================ */
    .cart-layout {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 40px;
    }

    .cart-item {
      display: flex;
      gap: 20px;
      padding: 20px 0;
      border-bottom: 1px solid var(--border-light);
    }
    .cart-item .product-line-grid{
      width:100%;
    }

    .cart-item-image {
      width: 100px;
      height: 80px;
      background: var(--bg-light);
      border-radius: 12px;
    }

    .cart-summary {
      background: var(--bg-light);
      border-radius: var(--radius-card);
      padding: 28px;
      height: fit-content;
      position: sticky;
      top: 100px;
    }

    /* ============================================
       CHECKOUT PAGE (One-Page)
       ============================================ */
    .checkout-layout {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 48px;
    }

    .checkout-step {
      background: var(--bg-white);
      border-radius: var(--radius-card);
      padding: 32px;
      border: 1px solid var(--border-light);
      margin-bottom: 24px;
    }

    .step-indicator {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
    }

    .step-number {
      width: 36px;
      height: 36px;
      background: var(--accent-cyan);
      color: var(--primary-navy);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: var(--primary-navy);
    }

    .form-control {
      width: 100%;
      padding: 14px 16px;
      border: 1.5px solid var(--border-light);
      border-radius: 12px;
      font-size: 1rem;
      transition: border-color 0.2s;
    }

    .form-control:focus {
      outline: none;
      border-color: var(--accent-cyan);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    /* Payment Methods */
    .payment-method {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px;
      border: 2px solid var(--border-light);
      border-radius: 12px;
      margin-bottom: 12px;
      cursor: pointer;
    }

    .payment-method.selected {
      border-color: var(--accent-cyan);
      background: #F0FAFF;
    }

    /* ============================================
       ACCOUNT PAGES
       ============================================ */
    .account-layout {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 40px;
    }

    .account-sidebar {
      background: var(--bg-light);
      border-radius: var(--radius-card);
      padding: 24px;
      height: fit-content;
    }

    .account-nav a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      text-decoration: none;
      color: var(--text-gray);
      border-radius: 12px;
      margin-bottom: 4px;
      font-weight: 500;
    }

    .account-nav a.active {
      background: var(--accent-cyan);
      color: var(--primary-navy);
    }

    .account-nav a:hover:not(.active) {
      background: var(--bg-white);
      color: var(--primary-navy);
    }

    .dashboard-card {
      background: var(--bg-white);
      border-radius: var(--radius-card);
      padding: 24px;
      border: 1px solid var(--border-light);
      margin-bottom: 24px;
    }

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

    .stat-card {
      background: var(--bg-light);
      border-radius: 16px;
      padding: 20px;
      text-align: center;
    }

    .stat-value {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary-navy);
    }

    /* Orders Table */
    .orders-table {
      width: 100%;
      border-collapse: collapse;
    }

    .orders-table th {
      text-align: left;
      padding: 16px;
      background: var(--bg-light);
      font-weight: 600;
      color: var(--primary-navy);
    }

    .orders-table td {
      padding: 16px;
      border-bottom: 1px solid var(--border-light);
    }

    .download-btn {
      background: var(--bg-light);
      padding: 8px 16px;
      border-radius: 8px;
      text-decoration: none;
      color: var(--primary-navy);
      font-weight: 500;
      font-size: 0.875rem;
    }

    /* ============================================
       FAQ ACCORDION
       ============================================ */
    .accordion-item {
      border-bottom: 1px solid var(--border-light);
      padding: 20px 0;
    }

    .accordion-title {
      font-weight: 600;
      font-size: 1.1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      color: var(--primary-navy);
    }

    .accordion-content {
      margin-top: 16px;
      color: var(--text-gray);
    }

    /* ============================================
       FOOTER
       ============================================ */
    .footer {
      background: var(--primary-navy);
      color: white;
      padding: 64px 0 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      gap: 40px;
    }

    .footer h4 {
      color: white;
      margin-bottom: 20px;
      font-size: 1rem;
    }

    .footer a {
      display: block;
      color: #9CA3AF;
      text-decoration: none;
      margin-bottom: 12px;
      font-size: 0.95rem;
      transition: color 0.15s;
    }

    .footer a:hover {
      color: var(--accent-cyan);
    }

    .newsletter-input {
      display: flex;
      margin-top: 16px;
    }

    .newsletter-input input {
      flex: 1;
      padding: 12px 16px;
      border: none;
      border-radius: 40px 0 0 40px;
      font-size: 0.9rem;
    }

    .newsletter-input button {
      background: var(--accent-cyan);
      border: none;
      padding: 12px 20px;
      border-radius: 0 40px 40px 0;
      color: var(--primary-navy);
      font-weight: 600;
      cursor: pointer;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 40px;
      margin-top: 40px;
      border-top: 1px solid #1E3A5F;
      color: #9CA3AF;
    }

    .social-icons {
      display: flex;
      gap: 20px;
    }

    .social-icons a {
      color: #9CA3AF;
      font-size: 1.3rem;
    }

    /* ============================================
       RESPONSIVE
       ============================================ */
    @media (max-width: 1024px) {
      .category-layout { grid-template-columns: 1fr; }
      .product-layout { grid-template-columns: 1fr; }
      .cart-layout { grid-template-columns: 1fr; }
      .checkout-layout { grid-template-columns: 1fr; }
      .account-layout { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
      .mega-menu { display: none; }
      .search-wrapper { max-width: 240px; }
    }

    @media (max-width: 768px) {
      .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
      .section { padding: 60px 0; }
      .header-inner { flex-wrap: wrap; }
      .search-wrapper { order: 3; max-width: 100%; width: 100%; margin-top: 12px; }
      .footer-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
    }

    /* Utility Classes */
    .text-center { text-align: center; }
    .mb-1 { margin-bottom: 8px; }
    .mb-2 { margin-bottom: 16px; }
    .mb-3 { margin-bottom: 24px; }
    .mb-4 { margin-bottom: 32px; }
    .mb-5 { margin-bottom: 48px; }
    .mt-4 { margin-top: 32px; }
    .flex { display: flex; gap: 16px; flex-wrap: wrap; }
    .justify-between { justify-content: space-between; }
    .align-center { align-items: center; }
    .gap-2 { gap: 12px; }
    .gap-4 { gap: 24px; }

    a.colored_link {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1))!important;
}
/* Hide quantity input on product page */

.qty,.block-cart-product-quantity,
.product-quantity .qty,
.product-quantity .input-group,
.js-product-page .current-price,
.quantity_wanted,
#quantity_wanted {
    display: none !important;
}

/* Hide quantity label */
.product-quantity label[for="quantity_wanted"] {
    display: none !important;
}

/* Make add to cart button full width */
.product-quantity .add-to-cart,
.product-add-to-cart .add-to-cart {
    width: 100%;
    margin-top: 0;
}

/* Classic theme specific */
.product-actions .add-to-cart.btn {
    width: 100%;
}
/*
    #product .images-container .product-cover {
   
    background: linear-gradient(145deg, #F1F5F9, #FFFFFF);
    border-radius: 32px;
    padding: 20px;
    border: 1px solid #E2E8F0;
}
    #product .images-container .product-cover .product-images-large{

    background: #0A0F1F;
    border-radius: 20px;
    padding: 20px;
    color: white;
    box-shadow: 0 25px 35px -10px rgba(0, 0, 0, 0.1);
    }
*/

    /* Demo Card */
    .demo-card {
      background: linear-gradient(135deg, #0B1C2C 0%, #1A3A5C 100%);
      border-radius: var(--radius-card);
      padding: 20px;
      margin: 16px 0 24px 0;
    }
    .demo-card h4 {
      color: white;
      text-transform: none;
      margin-bottom: 16px;
      font-size: 1rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .demo-links {
      display: flex;
      gap: 12px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }
    .demo-link {
      background: rgba(255, 255, 255, 0.15);
      padding: 8px 16px;
      border-radius: 40px;
      color: white;
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.2s;
    }
    .demo-link:hover {
      background: var(--accent-cyan);
      color: var(--primary-navy);
    }
    .demo-credentials {
      background: rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 12px;
      font-size: 0.8rem;
      color: #94A3B8;
    }
    .demo-credentials p {
      margin-bottom: 4px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .demo-credentials strong {
      color: white;
    }

    /* Action Buttons Row */
    .action-buttons-row {
      display: flex;
      gap: 12px;
      margin: 16px 0 24px 0;
    }
    .action-buttons-row .btn {
      flex: 1;
      padding: 10px 16px;
      font-size: 0.9rem;
    }
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 12px 28px; border-radius: var(--radius-btn);
      font-weight: 600; font-size: 1rem; text-decoration: none;
      transition: all 0.2s; cursor: pointer; border: none;
    }
    .btn-primary {
      background: var(--accent-cyan); color: var(--primary-navy);
      box-shadow: 0 4px 12px rgba(0, 194, 255, 0.25);
    }
    .btn-primary:hover { background: var(--accent-cyan-hover); transform: translateY(-2px); }
    .btn-secondary {
      background: transparent; color: var(--primary-navy);
      border: 2px solid var(--border-light);
    }
    .btn-secondary:hover { border-color: var(--accent-cyan); background: var(--bg-light); }
    .btn-outline {
      background: transparent; border: 1.5px solid var(--border-light);
      color: var(--text-dark);
    }
    .btn-support {
      background: #1E3A5F; color: white;
      border: none;
    }
    .btn-support:hover { background: #2D4A6E; transform: translateY(-2px); }
    .btn-bug {
      background: rgba(239, 68, 68, 0.1); color: var(--danger-red);
      border: 1px solid var(--danger-red);
    }
    .btn-bug:hover { background: var(--danger-red); color: white; transform: translateY(-2px); }
    .btn-large { padding: 16px 36px; font-size: 1.1rem; }
    .btn-block { width: 100%; }

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}
.product-add-to-cart .col-add-btn{
  width:100%;
}
  /* Modern Account Dashboard Styles */
    .account-layout-modern {
      margin: 0 auto;
      max-width: 1320px;
      padding: 20px 0;
    }
    
    .account-modern-container {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 40px;
    }
    
    /* Sidebar Styles */
    .account-sidebar-modern {
      background: var(--bg-white, #FFFFFF);
      border-radius: 16px;
      border: 1px solid var(--border-light, #E5E7EB);
      overflow: hidden;
      height: fit-content;
      position: sticky;
      top: 100px;
    }
    
    .user-profile-card {
      background: linear-gradient(135deg, #0B1C2C 0%, #1A3A5C 100%);
      padding: 32px 24px;
      text-align: center;
    }
    
    .user-avatar {
      width: 80px;
      height: 80px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      border: 3px solid #00C2FF;
    }
    
    .avatar-initials {
      font-size: 2rem;
      font-weight: 700;
      color: white;
      text-transform: uppercase;
    }
    
    .user-avatar .material-symbols-outlined {
      font-size: 48px;
      color: white;
    }
    
    .user-name {
      font-size: 1.1rem;
      font-weight: 700;
      color: white;
      margin-bottom: 4px;
    }
    
    .user-email {
      font-size: 0.8rem;
      color: #94A3B8;
    }
    
    .account-nav-modern {
      padding: 16px 8px;
    }
    
    .nav-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      text-decoration: none;
      color: #6B7280;
      border-radius: 12px;
      margin-bottom: 4px;
      transition: all 0.2s ease;
      font-weight: 500;
    }
    
    .nav-item:hover {
      background: #F7F9FC;
      color: #0B1C2C;
    }
    
    .nav-item.active {
      background: rgba(0, 194, 255, 0.1);
      color: #00C2FF;
    }
    
    .nav-item .material-symbols-outlined {
      font-size: 22px;
    }
    
    .logout-item {
      margin-top: 16px;
      border-top: 1px solid #E5E7EB;
      padding-top: 16px;
    }
    
    /* Main Content */
    .account-main-modern {
      overflow: hidden;
    }
    
    .welcome-title {
      font-size: 1.8rem;
      font-weight: 700;
      color: #0B1C2C;
      margin-bottom: 24px;
    }
    
    /* Stats Grid */
    .stats-grid-modern {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 32px;
    }
    
    .stat-card-modern {
      background: #F7F9FC;
      border-radius: 16px;
      padding: 24px;
      text-align: center;
      transition: all 0.2s ease;
    }
    
    .stat-card-modern:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    }
    
    .stat-icon .material-symbols-outlined {
      font-size: 36px;
      color: #00C2FF;
    }
    
    .stat-value {
      font-size: 2.5rem;
      font-weight: 800;
      color: #0B1C2C;
      margin-top: 12px;
    }
    
    .stat-label {
      font-size: 0.85rem;
      color: #6B7280;
      margin-top: 4px;
    }
    
    /* Dashboard Cards */
    .dashboard-card-modern {
      background: var(--bg-white, #FFFFFF);
      border-radius: 16px;
      border: 1px solid #E5E7EB;
      padding: 24px;
      margin-bottom: 32px;
    }
    
    .card-header-modern {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      flex-wrap: wrap;
      gap: 12px;
    }
    
    .card-header-modern h3 {
      font-size: 1.2rem;
      font-weight: 600;
      margin: 0;
    }
    
    .view-all-link {
      color: #00C2FF;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    
    .view-all-link:hover {
      gap: 8px;
      transition: 0.2s;
    }
    
    .view-all-link .material-symbols-outlined {
      font-size: 16px;
    }
    
    /* Orders Table */
    .table-responsive-modern {
      overflow-x: auto;
    }
    
    .orders-table-modern {
      width: 100%;
      border-collapse: collapse;
    }
    
    .orders-table-modern th {
      text-align: left;
      padding: 14px 12px;
      background: #F7F9FC;
      font-weight: 600;
      color: #0B1C2C;
      font-size: 0.85rem;
    }
    
    .orders-table-modern td {
      padding: 16px 12px;
      border-bottom: 1px solid #E5E7EB;
      color: #4B5563;
    }
    
    .order-ref {
      font-weight: 600;
      color: #0B1C2C;
    }
    
    .order-total {
      font-weight: 600;
      color: #0B1C2C;
    }
    
    .order-status {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 40px;
      font-size: 0.75rem;
      font-weight: 600;
    }
    
    .download-btn-modern {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #F7F9FC;
      padding: 6px 14px;
      border-radius: 40px;
      text-decoration: none;
      color: #0B1C2C;
      font-size: 0.75rem;
      font-weight: 500;
      transition: all 0.2s;
    }
    
    .download-btn-modern:hover {
      background: #00C2FF;
      color: #0B1C2C;
    }
    
    .download-btn-modern .material-symbols-outlined {
      font-size: 16px;
    }
    
    /* Quick Actions Grid */
    .quick-actions-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    
    .quick-action-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      padding: 20px;
      background: #F7F9FC;
      border-radius: 16px;
      text-decoration: none;
      transition: all 0.2s ease;
    }
    
    .quick-action-item:hover {
      background: rgba(0, 194, 255, 0.1);
      transform: translateY(-2px);
    }
    
    .quick-action-item .material-symbols-outlined {
      font-size: 32px;
      color: #00C2FF;
    }
    
    .quick-action-item p {
      margin: 0;
      font-size: 0.85rem;
      font-weight: 500;
      color: #0B1C2C;
    }
    
    /* Empty State */
    .empty-state {
      text-align: center;
      padding: 48px !important;
    }
    
    .empty-state-icon .material-symbols-outlined {
      font-size: 64px;
      color: #9CA3AF;
      margin-bottom: 16px;
    }
    
    .empty-state h3 {
      margin-bottom: 8px;
    }
    
    .empty-state p {
      margin-bottom: 24px;
      color: #6B7280;
    }
    
    /* Guest Mode */
    .account-guest-modern {
      max-width: 500px;
      margin: 60px auto;
    }
    
    .login-card-modern {
      background: var(--bg-white, #FFFFFF);
      border-radius: 24px;
      border: 1px solid #E5E7EB;
      padding: 48px;
      text-align: center;
    }
    
    .login-card-modern h2 {
      margin-bottom: 12px;
    }
    
    .login-card-modern p {
      margin-bottom: 24px;
      color: #6B7280;
    }
    
    /* Responsive */
    @media (max-width: 1024px) {
      .account-modern-container {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      
      .account-sidebar-modern {
        position: static;
      }
      
      .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 768px) {
      .stats-grid-modern {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      
      .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .orders-table-modern th,
      .orders-table-modern td {
        padding: 10px 8px;
        font-size: 0.8rem;
      }
      
      .card-header-modern {
        flex-direction: column;
        align-items: flex-start;
      }
      
      .welcome-title {
        font-size: 1.5rem;
      }
    }
    
    @media (max-width: 480px) {
      .quick-actions-grid {
        grid-template-columns: 1fr;
      }
      
      .dashboard-card-modern {
        padding: 20px;
      }
    }
    
    /* Utility */
    .mb-3 {
      margin-bottom: 16px;
    }
/* ============================================
   DD-ADDRESSES-PAGE - Modern styling for addresses page
   ONLY affects elements inside .dd-addresses-page
   ============================================ */

.dd-addresses-page {
  max-width: 100%;
}

/* Modern grid spacing */
.dd-addresses-page .row.dd-addresses-grid-modern {
  margin-bottom: 32px;
}

.dd-addresses-page .dd-address-col {
  margin-bottom: 24px;
}

/* Modern address card styling */
.dd-addresses-page .address {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #E5E7EB;
  overflow: hidden;
  transition: all 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.dd-addresses-page .address:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.1);
  border-color: #00C2FF;
}

/* Address header */
.dd-addresses-page .address .address-header {
  background: linear-gradient(135deg, #0B1C2C 0%, #1A3A5C 100%);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dd-addresses-page .address .address-header .material-symbols-outlined {
  color: #00C2FF;
  font-size: 28px;
}

.dd-addresses-page .address .address-header h1,
.dd-addresses-page .address .address-header h3,
.dd-addresses-page .address .address-header .h3 {
  color: white;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

/* Address body */
.dd-addresses-page .address .address-body {
  padding: 20px;
  flex: 1;
}

.dd-addresses-page .address address {
  font-style: normal;
  color: #4B5563;
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 0;
}

/* Address footer with action buttons */
.dd-addresses-page .address .address-footer {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid #F0F2F5;
  background: #F9FAFB;
}

.dd-addresses-page .address .address-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
  flex: 1;
  justify-content: center;
}

/* Edit button */
.dd-addresses-page .address .address-footer a[data-link-action="edit-address"] {
  background: #FFFFFF;
  color: #0B1C2C;
  border: 1px solid #E5E7EB;
}

.dd-addresses-page .address .address-footer a[data-link-action="edit-address"]:hover {
  background: #00C2FF;
  color: #0B1C2C;
  border-color: #00C2FF;
  transform: translateY(-2px);
}

/* Delete button */
.dd-addresses-page .address .address-footer a[data-link-action="delete-address"] {
  background: rgba(239, 68, 68, 0.08);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.dd-addresses-page .address .address-footer a[data-link-action="delete-address"]:hover {
  background: #EF4444;
  color: white;
  transform: translateY(-2px);
}

.dd-addresses-page .address .address-footer .material-symbols-outlined {
  font-size: 18px;
}

/* Modern alert styling */
.dd-addresses-page .dd-custom-alert {
  border-radius: 16px;
  background: #FEF3C7;
  border: 1px solid #FDE68A;
  color: #92400E;
  padding: 20px 24px;
  margin-bottom: 32px;
}

.dd-addresses-page .dd-custom-alert a {
  color: #00C2FF;
  text-decoration: none;
  font-weight: 600;
}

.dd-addresses-page .dd-custom-alert a:hover {
  text-decoration: underline;
}

/* Modern footer button */
.dd-addresses-page .dd-addresses-footer-modern {
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E5E7EB;
}

.dd-addresses-page .addresses-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #0B1C2C;
  border: 2px solid #E5E7EB;
  padding: 12px 28px;
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dd-addresses-page .addresses-footer a:hover {
  border-color: #00C2FF;
  background: rgba(0, 194, 255, 0.05);
  transform: translateY(-2px);
}

.dd-addresses-page .addresses-footer .material-symbols-outlined {
  font-size: 20px;
}

/* Card animation */
.dd-addresses-page .dd-address-col {
  animation: ddFadeInUp 0.3s ease backwards;
}

@keyframes ddFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dd-addresses-page .dd-address-col:nth-child(1) { animation-delay: 0.05s; }
.dd-addresses-page .dd-address-col:nth-child(2) { animation-delay: 0.1s; }
.dd-addresses-page .dd-address-col:nth-child(3) { animation-delay: 0.15s; }
.dd-addresses-page .dd-address-col:nth-child(4) { animation-delay: 0.2s; }
.dd-addresses-page .dd-address-col:nth-child(5) { animation-delay: 0.25s; }
.dd-addresses-page .dd-address-col:nth-child(6) { animation-delay: 0.3s; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .dd-addresses-page .address .address-footer {
    flex-direction: column;
    gap: 8px;
  }
  
  .dd-addresses-page .address .address-footer a {
    width: 100%;
  }
  
  .dd-addresses-page .addresses-footer a {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
