:root {
    --navy: #0a192f;
    --charcoal: #1e2a3a; /* Keeping some static secondary shades */
    --suit-gray: #2d3748; 
    --gold: #c9a96e;
    --cream:#f5f1e6; 
    --text-light: #e8e6e1; 
    --border-gold: rgba(201, 169, 110, 0.3); 
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.2); 
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1); 
    --background-light: rgba(30, 42, 58, 0.5); 
}

/* Base Styles (rest of your original CSS) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0c1423;
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(201, 169, 110, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(10, 25, 47, 0.1) 0%, transparent 20%);
    position: relative;
    overflow-x: hidden;
}

/* Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Use the gold variable in the SVG data URI */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5 -2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23c9a96e' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: -1;
    opacity: 0.5;
}

.vcard-container {
    width: 100%;
    max-width: 1100px;
    background-color: var(--navy);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-gold);
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 700px;
}

/* Premium Header */
.vcard-header {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--navy) 100%);
    padding: 30px 40px 25px;
    border-bottom: 1px solid var(--border-gold);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vcard-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a96e' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='100' cy='100' r='2'/%3E%3Ccircle cx='50' cy='50' r='1'/%3E%3Ccircle cx='150' cy='150' r='1'/%3E%3Ccircle cx='30' cy='100' r='1'/%3E%3Ccircle cx='170' cy='100' r='1'/%3C/g%3E%3C/svg%3E");
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gozzip-logo {
    height: 70px;
    width: auto;
    filter: brightness(1.1);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--gold);
    margin-top: 5px;
    font-style: italic;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.tagline::before {
    content: '“';
    position: absolute;
    left: -15px;
    top: -5px;
    font-size: 2.2rem;
    color: rgba(201, 169, 110, 0.5);
}

.tagline::after {
    content: '”';
    position: absolute;
    right: -15px;
    bottom: -10px;
    font-size: 2.2rem;
    color: rgba(201, 169, 110, 0.5);
}

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

.header-phone {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-phone i {
    color: var(--gold);
}

.header-website {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 169, 110, 0.1);
    padding: 8px 15px;
    border-radius: 6px;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.header-website:hover {
    background: rgba(201, 169, 110, 0.2);
    color: var(--cream);
    border-color: var(--gold);
}

/* Left Side - Store Info */
.stores-side {
    padding: 40px;
    background-color: var(--charcoal);
    border-right: 1px solid var(--border-gold);
    position: relative;
}

.stores-side::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.2;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--gold);
}

.stores-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.store-card {
    background: linear-gradient(145deg, rgba(30, 42, 58, 0.8) 0%, rgba(10, 25, 47, 0.8) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 25px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.store-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--gold);
    opacity: 0;
    transition: var(--transition);
}

.store-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--gold);
}

.store-card:hover::before {
    opacity: 1;
}

.store-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.store-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--cream);
}

.store-status {
    display: inline-block;
    padding: 5px 12px;
    background-color: rgba(201, 169, 110, 0.1);
    color: var(--gold);
    font-size: 0.8rem;
    border-radius: 20px;
    font-weight: 500;
}

.store-address {
    /*color: rgba(232, 230, 225, 0.7);*/
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.store-actions {
    display: flex;
    gap: 15px;
}

.direction-btn, .call-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    flex: 1;
}

.direction-btn {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.direction-btn:hover {
    background-color: var(--gold);
    color: var(--navy);
}

.call-btn {
    background-color: rgba(201, 169, 110, 0.1);
    color: var(--cream);
    border: 1px solid rgba(201, 169, 110, 0.3);
}

.call-btn:hover {
    background-color: rgba(201, 169, 110, 0.2);
    border-color: var(--gold);
}

/* Right Side - Contact & Social */
.contact-side {
    padding: 40px;
    background-color: var(--navy);
    display: flex;
    flex-direction: column;
}

.contact-container {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(201, 169, 110, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--gold);
    font-size: 1.5rem;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.contact-details h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 5px;
}

.contact-details p {
    /*color: rgba(232, 230, 225, 0.7);*/
    font-size: 0.95rem;
}

.social-section {
    margin-bottom: 40px;
}

.social-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.social-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    border-radius: 10px;
    background-color: var(--background-light);
    text-decoration: none;
    color: var(--text-light); /* Changed from --secondary to a dynamic-friendly color */
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.social-card:hover {
    background-color: rgba(201, 169, 110, 0.1);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(201, 169, 110, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
}

.social-name {
    font-weight: 500;
    font-size: 1rem;
}

.vcard-download {
    margin-top: auto;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1) 0%, rgba(30, 42, 58, 0.3) 100%);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid var(--border-gold);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--gold);
    color: var(--navy);
    padding: 16px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    width: 100%;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.download-btn:hover {
    background-color: #d8b87a;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(201, 169, 110, 0.3);
}

.download-note {
    color: rgba(232, 230, 225, 0.7);
    font-size: 0.9rem;
    margin-top: 12px;
}

/* Footer */
.vcard-footer {
    grid-column: 1 / -1;
    background-color: rgba(10, 25, 47, 0.9);
    padding: 20px 40px;
    text-align: center;
    border-top: 1px solid var(--border-gold);
    color: rgba(232, 230, 225, 0.6);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    height: 30px;
    width: auto;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 992px) {
    .vcard-container {
        grid-template-columns: 1fr;
    }

    .stores-side {
        border-right: none;
        border-bottom: 1px solid var(--border-gold);
    }

    .stores-side::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .vcard-header {
        padding: 25px 30px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .brand-container {
        width: 100%;
    }

    .header-contact {
        align-items: flex-start;
        width: 100%;
    }

    .gozzip-logo {
        height: 60px;
    }

    .tagline {
        font-size: 1.6rem;
    }

    .stores-side, .contact-side {
        padding: 30px;
    }

    .store-actions {
        flex-direction: column;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .vcard-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .vcard-header {
        padding: 20px;
    }

    .brand-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .gozzip-logo {
        height: 50px;
    }

    .tagline {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .store-card {
        padding: 20px;
    }

    .stores-side, .contact-side {
        padding: 25px 20px;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.store-card, .contact-item, .social-card {
    animation: fadeInUp 0.6s ease forwards;
}

.store-card:nth-child(1) { animation-delay: 0.1s; }
.store-card:nth-child(2) { animation-delay: 0.2s; }
.store-card:nth-child(3) { animation-delay: 0.3s; }

/* Fabric texture decorations */
.fabric-decoration {
    position: absolute;
    color: rgba(201, 169, 110, 0.08);
    font-size: 5rem;
    z-index: 1;
}

.fabric-1 {
    top: 60px;
    right: 60px;
}

.fabric-2 {
    bottom: 80px;
    left: 50px;
}

/* Store hours highlight */
.hours-highlight {
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
    border: 1px solid;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.hours-highlight i {
    color: var(--gold);
}

.hours-highlight.open {
    background-color: rgba(50, 205, 50, 0.1); /* Lime Green */
    border-color: rgba(50, 205, 50, 0.5);
    color: #50cd50;
}

.hours-highlight.closed {
    background-color: rgba(255, 69, 0, 0.1); /* Red-Orange */
    border-color: rgba(255, 69, 0, 0.5);
    color: #ff4500;
}

.hours-highlight.maintenance {
    background-color: rgba(255, 215, 0, 0.1); /* Gold */
    border-color: rgba(255, 215, 0, 0.5);
    color: #ffd700;
}