:root {
    --primary: #D4AF37;
    /* Gold */
    --secondary: #2C2C2C;
    /* Dark Gray */
    --dark: #121212;
    /* Nearly Black */
    --light: #F5F5F5;
    /* Off White */
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

body {
    background-color: var(--light);
    color: var(--secondary);
    font-family: var(--font-body);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes float-reverse {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(-2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-reverse {
    animation: float-reverse 7s ease-in-out infinite;
}

/* Glassmorphism */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    border-radius: 20px;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    margin-left: 20px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Logo Styles */
.navbar-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    margin-bottom: 25px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, #f5f5f5, #e0e0e0);
    padding: 100px 0;
}

.hero-title {
    font-size: 5.5rem;
    /* Enlarge Title */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    background: linear-gradient(45deg, var(--dark), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    /* Enlarge Subtitle */
    margin-bottom: 3rem;
}

.btn-primary-custom {
    background-color: var(--primary);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    background-color: #b8962e;
    color: white;
}

/* Product Cards */
.product-card {
    transition: all 0.4s ease;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-img-wrapper {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.product-img {
    max-width: 80%;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.1) rotate(-5deg);
}

/* Floating Icons */
.social-float {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.social-icon:hover {
    transform: scale(1.2);
    color: white;
}

.bg-whatsapp {
    background: #25D366;
}

.bg-instagram {
    background: #E1306C;
}

.bg-facebook {
    background: #1877F2;
}

.bg-tiktok {
    background: #000000;
}

/* Contact Form Redesign V3 - Cosmic Dark Banner */
.contact-section-luxury {
    background-color: #000000;
    min-height: 280px;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.cosmic-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 150, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.cosmic-shoe-container {
    position: relative;
    z-index: 1;
}

.cosmic-shoe-img {
    max-width: 80%;
    filter: drop-shadow(0 0 30px rgba(0, 150, 255, 0.3));
    animation: cosmic-float 8s ease-in-out infinite;
}

@keyframes cosmic-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-30px) rotate(5deg) scale(1.05);
    }
}

.contact-title-cosmic {
    font-size: 2rem;
    color: #a8ffb3;
    /* Minty green matching the reference text */
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.cosmic-search-box {
    display: flex;
    gap: 10px;
    max-width: 600px;
    margin-bottom: 3rem;
}

.cosmic-input {
    background: white !important;
    border: none !important;
    padding: 15px 25px !important;
    border-radius: 4px !important;
    flex-grow: 1;
    color: #333 !important;
    font-size: 1rem;
}

.btn-cosmic {
    background: #a8ffb3 !important;
    color: #1a1a1a !important;
    border: none !important;
    padding: 15px 30px !important;
    border-radius: 4px !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-cosmic:hover {
    background: #ffffff !important;
    transform: scale(1.02);
}

.cosmic-footer-links {
    position: absolute;
    bottom: 30px;
    right: 50px;
    display: flex;
    gap: 30px;
    font-size: 0.9rem;
    z-index: 2;
}

.cosmic-footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 400;
}

.cosmic-footer-links a:hover {
    color: #a8ffb3;
}

.cosmic-footer-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* Modern Footer Redesign */
.footer-modern {
    background: radial-gradient(circle at 50% 0%, #1a1a1a, #0d0d0d);
    color: #fff;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

.footer-brand-text {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-title-modern {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #fff;
    position: relative;
}

.footer-title-modern::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-link-modern {
    color: #888;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-link-modern:hover {
    color: var(--primary);
    transform: translateX(8px);
}

/* Newsletter Glassmorphism */
.newsletter-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 5px;
    display: flex;
    margin-top: 20px;
}

.newsletter-input {
    background: transparent;
    border: none;
    padding: 12px 15px;
    color: #fff;
    flex-grow: 1;
    font-size: 0.9rem;
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-btn {
    background: var(--primary);
    border: none;
    color: #000;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* Social Icons Modern */
.social-links-modern {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link-item {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link-item:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-5px) rotate(8deg);
    border-color: var(--primary);
}

.social-link-item.fb:hover {
    background: #3b5998;
    color: #fff;
    border-color: #3b5998;
}

.social-link-item.ig:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    border-color: transparent;
}

.social-link-item.tk:hover {
    background: #000;
    color: #fff;
    border-color: #333;
}

.footer-bottom-modern {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    margin-top: 60px;
    color: #666;
    font-size: 0.85rem;
}

/* Stylish Product Accordion */
.product-info-tabs {
    border-top: 1px solid #e5e1d5;
    margin-top: 40px;
}

.info-item {
    border-bottom: 1px solid #e5e1d5;
    transition: all 0.3s ease;
}

.info-header {
    padding: 22px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.info-header h5 {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-header i.fa-plus {
    font-size: 0.8rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary);
}

.info-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 5px;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.info-item.active .info-content {
    max-height: 600px;
    /* Large enough for content */
    padding-bottom: 25px;
}

.info-item.active .info-header i.fa-plus {
    transform: rotate(45deg);
}

.info-header:hover h5 {
    color: var(--primary);
}

.shipping-box {
    background: #fbfaf5;
    border: 1px solid #ece9df;
    border-radius: 15px;
    padding: 20px;
    margin-top: 15px;
}

/* Size Chart Link */
.size-chart-link {
    color: #666;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    transition: color 0.3s;
    font-weight: 500;
}

.size-chart-link:hover {
    color: var(--primary);
}

.size-chart-link i {
    font-size: 0.9rem;
}

/* Modern Size Chart Modal */
.modal-content {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.modal-header {
    background: rgba(var(--primary-rgb), 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px 40px;
}

.modal-header .modal-title {
    font-size: 1.5rem;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.modal-body {
    padding: 40px;
}

/* Modern Minimalist Table */
.modern-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.modern-table thead th {
    background: #1a1a1a !important;
    color: #fff !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    padding: 18px 15px;
    border: none;
}

.modern-table thead th:first-child {
    border-radius: 12px 0 0 12px;
}

.modern-table thead th:last-child {
    border-radius: 0 12px 12px 0;
}

.modern-table tbody tr {
    transition: all 0.2s ease;
    background: #fff;
}

.modern-table tbody td {
    padding: 16px 15px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #444;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.modern-table tbody td:first-child {
    border-left: 1px solid #f0f0f0;
    border-radius: 12px 0 0 12px;
}

.modern-table tbody td:last-child {
    border-right: 1px solid #f0f0f0;
    border-radius: 0 12px 12px 0;
}

.modern-table tbody tr:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.modern-table tbody tr:hover td {
    background: #fffbf0;
    border-color: var(--primary);
    color: var(--primary);
}

/* Policy Sections */
.policy-section {
    background: #fcfbf7;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #efeadd;
}

.policy-card {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.policy-card:last-child {
    margin-bottom: 0;
}

.policy-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.policy-text h6 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #333;
}

.policy-text p {
    font-size: 0.85rem;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* WOW Exchange Policy Redesign */
@keyframes mesh-gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes float-slow {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.exchange-body {
    background: #000;
}

.policy-hero {
    background: linear-gradient(-45deg, #0d0d0d, #1a1a1a, #2a2a2a, #1a1a1a);
    background-size: 400% 400%;
    animation: mesh-gradient 15s ease infinite;
    padding: 140px 0 100px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-shoe-silhouette {
    position: absolute;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    pointer-events: none;
}

.silhouette-left {
    top: 10%;
    left: 5%;
    transform: rotate(-15deg);
    animation: float-slow 8s infinite ease-in-out;
}

.silhouette-right {
    bottom: 10%;
    right: 5%;
    transform: rotate(15deg);
    animation: float-slow 10s infinite ease-in-out reverse;
}

.policy-hero .container {
    position: relative;
    z-index: 1;
}

.policy-step-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 60px 45px;
    height: 100%;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: center;
    position: relative;
    color: #fff;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.policy-step-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a1a1a, #000);
    color: var(--primary);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 10;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.policy-step-card:hover .step-number {
    background: var(--primary);
    color: #000;
    transform: translateZ(60px) rotate(15deg);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

/* Liquid Glow & Aura */
.icon-aura {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.icon-aura::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.2;
    filter: blur(20px);
    animation: liquid-glow 4s infinite ease-in-out;
}

@keyframes liquid-glow {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.2;
    }

    33% {
        transform: scale(1.2) translate(10px, -5px);
        opacity: 0.4;
    }

    66% {
        transform: scale(0.9) translate(-5px, 10px);
        opacity: 0.3;
    }
}

.policy-step-card i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 50%, #b8860b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.2));
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.policy-step-card:hover i {
    transform: translateZ(40px) scale(1.1);
}

.policy-step-card h4 {
    transform: translateZ(20px);
    transition: transform 0.5s ease;
    margin-bottom: 20px;
}

.policy-step-card p {
    transform: translateZ(10px);
    transition: transform 0.5s ease;
    opacity: 0.6;
}

.policy-step-card:hover h4 {
    transform: translateZ(50px);
}

.policy-step-card:hover p {
    transform: translateZ(30px);
    opacity: 0.9;
}

.animate-fade-up {
    animation: fade-up 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.policy-faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.policy-faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.3);
    transform: scale(1.02);
}

.policy-faq-item h5 {
    color: var(--primary);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.policy-badge {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.2), transparent);
    border-left: 3px solid var(--primary);
    padding: 8px 10px;
    padding-left: 20px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.exclusive-note {
    background: linear-gradient(165deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), inset 0 0 50px rgba(212, 175, 55, 0.03);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.exclusive-note h5 {
    background: linear-gradient(90deg, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.exclusive-note i.fa-exclamation-triangle {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
        transform: scale(1);
    }

    50% {
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
        transform: scale(1.1);
    }
}

.exclusive-note::after {
    content: '\f54e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.02);
    transform: rotate(-20deg);
}

/* Modern Size Guide Page Styles */
.size-guide-body {
    background: #000;
}

.table-glass-container {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.table-glass-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.modern-table-premium {
    width: 100%;
    color: #fff;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.modern-table-premium th {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    padding: 20px;
    border: none;
    font-weight: 700;
}

.modern-table-premium th:first-child {
    border-radius: 12px 0 0 12px;
}

.modern-table-premium th:last-child {
    border-radius: 0 12px 12px 0;
}

.modern-table-premium td {
    background: rgba(255, 255, 255, 0.03);
    padding: 18px 20px;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.modern-table-premium td:first-child {
    border-radius: 12px 0 0 12px;
}

.modern-table-premium td:last-child {
    border-radius: 0 12px 12px 0;
}

.modern-table-premium tr:hover td {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary);
    transform: scale(1.01);
}

.tip-card-premium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.tip-card-premium:hover {
    border-color: var(--primary);
    background: rgba(212, 175, 55, 0.03);
}

.measure-step-img {
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.measure-step-img i {
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.1);
}

.measure-step-img::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    top: 0;
    left: -150%;
    animation: sweep 3s infinite linear;
}

@keyframes sweep {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

/* Modern Privacy Policy Styles */
.privacy-section-glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 50px;
    margin-bottom: 40px;
    color: #ccc;
    line-height: 1.8;
}

.privacy-section-glass h3 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.privacy-section-glass h3 i {
    color: var(--primary);
    font-size: 1.4rem;
}

.privacy-pillar-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
}

.privacy-pillar-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.03);
}

.privacy-pillar-card i {
    font-size: 3rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.security-badge-float {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: 0;
    animation: rotate-slow 20s infinite linear;
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.privacy-content-list {
    list-style: none;
    padding: 0;
}

.privacy-content-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.privacy-content-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.8rem;
    top: 5px;
}

.rights-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.rights-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--primary);
}

.rights-card i {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

/* Modern Terms of Service Styles */
.legal-text-premium {
    font-size: 0.95rem;
    line-height: 2;
    color: #bbb;
}

.legal-text-premium h4 {
    color: #fff;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text-premium p {
    margin-bottom: 25px;
}

.agreement-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 60px 45px;
    height: 100%;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: center;
    position: relative;
    color: #fff;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.agreement-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.agreement-card i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 50%, #b8860b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 2;
    margin-bottom: 30px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.agreement-card:hover i {
    transform: translateZ(50px) scale(1.1);
}

.agreement-card h4 {
    transform: translateZ(30px);
    transition: transform 0.5s ease;
}

.agreement-card p {
    transform: translateZ(20px);
    transition: transform 0.5s ease;
    opacity: 0.7;
}

.agreement-card:hover h4 {
    transform: translateZ(60px);
}

.agreement-card:hover p {
    transform: translateZ(40px);
    opacity: 1;
}

.legal-section-glass {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 60px;
    margin-bottom: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.agreement-badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-silhouette {
    position: absolute;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.02);
    z-index: 0;
    pointer-events: none;
    animation: float-slow 12s infinite ease-in-out;
}

.silhouette-top-right {
    top: 5%;
    right: 5%;
    transform: rotate(15deg);
}

.silhouette-bottom-left {
    bottom: 5%;
    left: 5%;
    transform: rotate(-15deg);
}

.agreement-pulse {
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Luxury Editorial CTA Banner */
.luxury-cta-section {
    padding: 50px 0;
    /* even smaller as requested */
    background: #000;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.luxury-cta-section .mesh-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: pulse-bg 8s infinite ease-in-out;
}

@keyframes pulse-bg {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Luxury Editorial CTA Banner - Master Your Walk Version */
.luxury-cta-section {
    padding: 60px 0;
    background: #000;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.editorial-layout {
    position: relative;
    z-index: 2;
}

.editorial-title-v2 {
    font-family: 'Inter', sans-serif;
    margin-bottom: 0;
}

.text-master-your {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 300;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
    display: block;
    letter-spacing: 5px;
    line-height: 1;
}

.text-walk-bold {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    display: block;
    line-height: 0.8;
    letter-spacing: -2px;
}

.text-luxury-gent {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--primary);
    margin-top: 10px;
    display: block;
}

.banner-image-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin-left: auto;
}

.banner-man-img {
    width: 100%;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    display: block;
}

.cta-btn-white {
    background: #fff;
    color: #000;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    margin-top: 50px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.cta-btn-white:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
}

@media (max-width: 991px) {
    .banner-image-container {
        margin: 50px auto 0;
    }

    .luxury-cta-section {
        text-align: center;
        padding: 50px 0;
    }

    .text-walk-bold {
        font-size: 4.5rem;
    }

    .text-master-your {
        font-size: 2rem;
    }
}