/* ================================================
   HENDOSHI - PAGES - HOME
   ================================================
   
   Purpose: Home page specific styling and components
   
   Contains:
   - Size guide modal
   - Contact page layout
   - Track order form
   - Landing page sections
   - Home hero sections
   
   Dependencies: variables.css, ui-components.css
   Load Order: Load after foundation and components
   ================================================ */

/* ===== SIZE_GUIDE ===== */

/* .shipping-contact .btn-pink moved to components.css for canonical styling */
/* .contact-page styling moved to containers.css for centralized layout management */

.contact-hero {
    position: relative;
    margin-top: 76px;
    padding: 8rem 0 4rem;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 20, 147, 0.1);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.02);
}

.contact-hero::before {
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 20, 147, 0.05) 0%, transparent 50%);
    content: "";
    pointer-events: none;
}

.contact-title {
    margin-bottom: 1rem;

    background: linear-gradient(135deg, var(--neon-pink), var(--electric-yellow));
    background-clip: text;

    color: transparent;
    font-weight: 900;
    font-size: 3rem;
    letter-spacing: 2px;
}

.contact-title,
.contact-subtitle {
    z-index: 2;
    position: relative;
}

.contact-subtitle {
    color: var(--off-white);
    font-size: 1.2rem;
    opacity: 0.9;
}

    /* contact-form-section styles consolidated to ui-components.css */

/* .contact-card consolidated to page-styles.css */

.size-table {
    width: 100%;
    margin: 20px 0;
    overflow: hidden;
    border-radius: var(--border-radius-glass);
    border-collapse: collapse;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.size-table th,
.size-table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.size-table th {
    background: rgba(255, 20, 147, 0.1);
    color: #ff1493;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.size-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

.size-table tr:hover {
    background: rgba(255, 20, 147, 0.05);
}

@media (max-width: 768px) {
    /* Page-scoped spacing for the Bella Canvas size region (mobile only) */
    #bella-canvas-region {
        margin-top: 0.5rem;
    }
}

/* Size Guide page-specific overrides */
#sizeguide-shipping-contact {
    margin-top: 1.5rem;
}

#sizeguide-shipping-additional {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.contact-page .size-table tbody {
    color: white;
}

.size-note {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-size: 0.9rem;
}

.table-responsive {
    overflow-x: auto;
}

@media (max-width: 768px) {
    /* Hide inches columns on mobile - show only cm for cleaner display */
    .size-table th:nth-child(2),
    .size-table td:nth-child(2),
    .size-table th:nth-child(4),
    .size-table td:nth-child(4),
    .size-table th:nth-child(6),
    .size-table td:nth-child(6) {
        display: none;
    }

    .size-table th,
    .size-table td {
        padding: 8px 6px;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .size-table {
        margin: 15px 0;
    }

    /* Prevent horizontal scroll */
    .table-responsive {
        overflow-x: visible;
    }

    .shipping-content {
        padding: 0.5rem;
    }

    .shipping-region {
        padding: 1rem 0.5rem;
    }
}

/* ===== CONTACT ===== */

/* Quick Contact Cards */
.quick-contact-card {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    background: var(--bg-glass-light);
    text-align: center;
    transition: all 0.3s ease;
}

.quick-contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-pink);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
}

.quick-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-pink), #ff6fb5);
    box-shadow: 0 5px 20px rgba(255, 20, 147, 0.3);
    color: white;
    font-size: 2rem;
}

.quick-contact-card h2 {
    margin-bottom: 0.75rem;
    color: var(--neon-pink);
    font-weight: 700;
    font-size: 1.25rem;
}

.quick-contact-card p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.response-time {
    display: inline-block;
    padding: 0.35rem 1rem;
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 20px;
    background: rgba(255, 20, 147, 0.1);
    color: var(--neon-pink);
    font-weight: 500;
    font-size: 0.85rem;
}

.social-link-btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    background: var(--neon-pink);
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-btn:hover {
    transform: scale(1.05);
    background: #ff6fb5;
    color: white;
}

/* FAQ Section */
.contact-faq-section {
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
}

.contact-faq-section h3 {
    margin-bottom: 2rem;
    color: var(--neon-pink);
    font-weight: 700;
    font-size: 2rem;
}

.contact-faq-section h3 i {
    margin-right: 0.75rem;
}

.faq-card {
    height: 100%;
    padding: 1.5rem;
    border: 1px solid var(--border-glass-color);
    border-radius: 12px;
    background: var(--bg-glass-light);
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateX(5px);
    border-color: rgba(255, 20, 147, 0.3);
}

.faq-card h4 {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-card h4 i {
    margin-right: 0.5rem;
    color: var(--neon-pink);
}

.faq-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.faq-card a {
    color: var(--neon-pink);
    font-weight: 500;
    text-decoration: none;
}

.faq-card a:hover {
    text-decoration: underline;
}

.contact-info-card h5 {
    color: var(--neon-pink);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .contact-faq-section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 768px) {
    .quick-contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .quick-contact-card h2 {
        font-size: 1.1rem;
    }

    .contact-faq-section h3 {
        font-size: 1.5rem;
    }

    .contact-info-card {
        padding: 1rem;
    }

    .shipping-content {
        padding: 0.5rem;
    }

    .shipping-region {
        padding: 1rem 0.5rem;
    }
}

/* ===== TRACK_ORDER ===== */

/* .btn-pink moved to components.css for canonical styling */

.tracking-form .form-control {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    color: white;
}

.tracking-form .form-control:focus {
    border-color: var(--neon-pink);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.1);
    color: white;
}

.tracking-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.tracking-form .form-label {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.tracking-form .form-label i {
    margin-right: 0.5rem;
    color: var(--neon-pink);
}

.carriers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 2rem;
    gap: 1.5rem;
}

.carrier-item {
    padding: 1.5rem;
    border: 1px solid var(--border-glass-color);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
    transition: all 0.3s ease;
}

.carrier-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 20, 147, 0.3);
    background: rgba(255, 20, 147, 0.05);
}

.carrier-logo-placeholder {
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.carrier-item:hover .carrier-logo-placeholder {
    transform: scale(1.05);
}

.carrier-name {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1.1rem;
}

.carrier-link {
    display: inline-block;
    color: var(--neon-pink);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.carrier-link:hover {
    transform: translateX(5px);
    color: #ff6fb5;
}

.carrier-link i {
    margin-left: 0.25rem;
    font-size: 0.8rem;
}

.help-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-glass-color);
}

.help-section:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.help-title {
    margin-bottom: 0.75rem;
    color: var(--neon-pink);
    font-weight: 600;
    font-size: 1rem;
}

.help-text {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.text-pink {
    color: var(--neon-pink);
    font-weight: 600;
    text-decoration: none;
}

.text-pink:hover {
    color: #ff6fb5;
    text-decoration: underline;
}

.btn-outline-pink {
    padding: 0.75rem 2rem;
    border: 2px solid var(--neon-pink);
    background: transparent;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-pink:hover {
    transform: translateY(-2px);
    background: var(--neon-pink);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.3);
    color: #000;
    text-decoration: none;
}

@media (max-width: 991px) {
    .carriers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .carrier-item {
        padding: 1rem;
    }
}

/* ===== RETURNS ===== */

/* contact-page padding moved to vault-modals.css canonical wrapper */

/* contact-form-section styles consolidated to ui-components.css */

/* .contact-card consolidated to page-styles.css */

/* .contact-card consolidated to page-styles.css */

.shipping-content {
    padding: 2rem;
}

.shipping-intro {
    text-align: center;
}

.shipping-heading {
    margin-bottom: 1rem;
    color: var(--off-white);
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.shipping-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.shipping-regions {
    margin-top: 3rem;
}

.shipping-region {
    margin-bottom: 2rem;
    padding: 2rem;
    border: 1px solid var(--border-glass-color);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    background: var(--bg-glass-light);
    transition: all 0.3s ease;
}

.shipping-region:hover {
    border-color: rgba(255, 20, 147, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.region-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.region-icon {
    margin-right: 1rem;
    color: var(--neon-pink);
    font-size: 2rem;
}

.region-title {
    margin: 0;
    color: var(--off-white);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.return-requirement {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.return-requirement:last-child {
    border-bottom: none;
}

.requirement-title {
    color: var(--neon-pink);
    font-weight: 600;
    font-size: 1rem;
}

.requirement-detail {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.4;
}

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

.non-returnable-list li {
    position: relative;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    color: var(--gray);
    line-height: 1.5;
}

.non-returnable-list li::before {
    position: absolute;
    left: 0;
    content: "×";
    color: var(--neon-pink);
    font-weight: bold;
}

.process-step {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem 0;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.process-step:last-child {
    border-bottom: none;
}

.step-number {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--neon-pink);
    color: var(--black);
    font-weight: 700;
    font-size: 1rem;
}

.step-content {
    flex: 1;
}

.step-title {
    margin-bottom: 0.25rem;
    color: var(--off-white);
    font-weight: 600;
    font-size: 1.1rem;
}

.step-detail {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.4;
}

.shipping-additional {
    margin: 0 -0.8rem !important;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.02);
}

.additional-heading {
    margin-bottom: 0;
    color: var(--off-white);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

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

.additional-list li {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: var(--gray);
    line-height: 1.6;
}

.additional-list li::before {
    position: absolute;
    left: 0;
    content: "•";
    color: var(--neon-pink);
    font-weight: bold;
}

/* Mobile responsiveness for returns page */
@media (max-width: 768px) {
    .shipping-content {
        padding: 1.5rem;
    }

    .shipping-heading {
        font-size: 1.6rem;
    }

    .region-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .region-icon {
        margin-right: 0;
    }

    .process-step {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .step-number {
        align-self: center;
    }

    .additional-list li {
        padding-left: 1rem;
    }

    .shipping-description {
        max-width: none;
    }

    .shipping-region,
    .shipping-content {
        padding: 1rem;
    }
}

/* ===== FAQ ===== */

/* contact-page padding moved to vault-modals.css canonical wrapper */

/* contact-form-section styles consolidated to ui-components.css */

/* .contact-card consolidated to page-styles.css */

.shipping-content {
    padding: 2rem;
}

.shipping-intro {
    text-align: center;
}

.shipping-heading {
    margin-bottom: 1rem;
    color: var(--off-white);
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.shipping-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.shipping-regions {
    margin-top: 3rem;
}

.shipping-region {
    margin-bottom: 2rem;
    padding: 2rem;
    border: 1px solid var(--border-glass-color);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    background: var(--bg-glass-light);
    transition: all 0.3s ease;
}

.shipping-region:hover {
    border-color: rgba(255, 20, 147, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.region-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.region-icon {
    margin-right: 1rem;
    color: var(--neon-pink);
    font-size: 2rem;
}

.region-title {
    margin: 0;
    color: var(--off-white);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-question {
    margin-bottom: 0.75rem;
    color: var(--neon-pink);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
}

.faq-answer {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mobile responsiveness for FAQ page */
@media (max-width: 768px) {
    .shipping-content {
        padding: 1.5rem;
    }

    .shipping-heading {
        font-size: 1.6rem;
    }

    .region-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .region-icon {
        margin-right: 0;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }

    .shipping-description {
        max-width: none;
    }

    .shipping-region,
    .shipping-content {
        padding: 1rem;
        margin: -0.8rem;
    }
}

/* ================================================
   LIGHT MODE OVERRIDES
   ================================================ */

:root.light-mode .contact-card,
:root.light-mode .contact-hero {
    background: #fff;
}

:root.light-mode .size-table {
    border-color: rgb(254, 252, 252);
    background: rgba(0, 0, 0, 0.05);
}

:root.light-mode .size-table th,
:root.light-mode .size-table td {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

:root.light-mode .size-table tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.03);
}

:root.light-mode .size-note {
    color: rgba(0, 0, 0, 0.7);
}

:root.light-mode .contact-page .size-table tbody {
    background: white !important;
}

:root.light-mode .quick-contact-card {
    border-color: rgba(0, 0, 0, 0.1);
}

:root.light-mode .quick-contact-icon {
    color: #000;
}

:root.light-mode .quick-contact-card p {
    color: rgba(0, 0, 0, 0.7);
}

:root.light-mode .contact-faq-section {
    border-color: rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.02);
}

:root.light-mode .faq-card h4 {
    color: rgba(0, 0, 0, 0.87);
}

:root.light-mode .faq-card p {
    color: rgba(0, 0, 0, 0.6);
}

:root.light-mode .tracking-form .form-control {
    border-color: rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.9);
    color: #000;
}

:root.light-mode .tracking-form .form-control:focus {
    background: #fff;
    color: #000;
}

:root.light-mode .tracking-form .form-control::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

:root.light-mode .tracking-form .form-label {
    color: rgba(0, 0, 0, 0.87);
}

:root.light-mode .carrier-item {
    background: rgba(0, 0, 0, 0.03);
}

:root.light-mode .carrier-name {
    color: rgba(0, 0, 0, 0.87);
}

:root.light-mode .help-text {
    color: rgba(0, 0, 0, 0.6);
}

:root.light-mode .return-requirement,
:root.light-mode .process-step {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

:root.light-mode .shipping-additional {
    border-color: rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.02);
}

:root.light-mode .faq-item {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

:root.light-mode .faq-answer {
    color: rgba(0, 0, 0, 0.7);
}

/* Shipping, Returns, Size Guide, FAQ - Light Mode Text */
:root.light-mode .shipping-heading {
    color: #222;
}

:root.light-mode .shipping-description {
    color: rgba(0, 0, 0, 0.7);
}

:root.light-mode .region-title,
:root.light-mode .step-title {
    color: #222;
}

:root.light-mode .step-detail,
:root.light-mode .requirement-detail {
    color: rgba(0, 0, 0, 0.7);
}

:root.light-mode .additional-heading {
    color: #222;
}

:root.light-mode .additional-list li,
:root.light-mode .non-returnable-list li {
    color: rgba(0, 0, 0, 0.7);
}

:root.light-mode .contact-text,
:root.light-mode .size-table td {
    color: #222;
}

:root.light-mode .size-table th {
    color: var(--neon-pink);
}

:root.light-mode .shipping-region {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.03);
}
