/* ==========================================
   Outlets Page Custom Styles
   ========================================== */

/* Hero Section */
.outlets-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    background-image: url('assets/images/outlets_bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.outlets-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.55) 100%
    );
    z-index: 1;
}

.outlets-hero-content {
    position: relative;
    z-index: 10;
    animation: fadeInOutlets 0.6s ease;
}

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

.outlets-hero .get-in-touch-badge {
    display: inline-block;
    background-color:  #FF000080;
;
    color: white;
    padding: 8px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-family: var(--font-poppins);
    text-transform: uppercase;
}

.outlets-hero h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    font-family: var(--font-poppins);
}

/* Tabs Bar */
.outlets-tabs-container {
    background-color: var(--bg-white);
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 60px; /* Sits below standard sticky navbar */
    z-index: 99;
}

.outlets-tabs {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 85px;
    overflow-x: auto;
    scrollbar-width: none;
}

.outlets-tabs::-webkit-scrollbar {
    display: none;
}

.outlets-tab {
    padding: 20px 10px;
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 500;
    color: #656565;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-family: var(--font-poppins);
    white-space: nowrap;
    text-align: center;
    flex-grow: 1;
}

.outlets-tab:hover {
    color: var(--primary-red);
}

.outlets-tab.active {
    color: var(--primary-red);
    font-weight: 700;
}

.outlets-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 10%;
    width: 80%;
    height: 3px;
    background-color: var(--primary-red);
    border-radius: 2px 2px 0 0;
}

/* Cards Section */
.outlets-section {
    background-color: #F8F8F8;
    padding: 40px 60px;
    min-height: 480px;
    overflow-y:auto;
}

.outlet-footer{
    margin-top:0px !important;
}

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

.outlets-tab-content {
    display: none;
    animation: fadeTabContent 0.4s ease;
}

.outlets-tab-content.active {
    display: block;
}

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

/* Card Styling */
.outlet-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    border: 1px solid #C7C7C7;
    padding: 16px;
    box-shadow: 0px 2px 6px 0px #0000001F;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.outlet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.outlet-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #484848;
;
    margin-bottom: 12px;
    font-family: var(--font-poppins);
    line-height: 1.4;
}

.outlet-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.outlet-detail-row {
    display: flex;
    font-size: 0.9rem;
    line-height: 1.5;
}

.outlet-detail-label {
    width: 100px;
    font-weight: 700;
    color:#999999;
    font-size: 11px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    text-transform: uppercase;
    font-family: var(--font-poppins);
}

.outlet-detail-value {
    color: #444444;
    font-weight: 400;
    font-size: 13px;
    flex-grow: 1;
}

.outlet-detail-value a {
    color: #EB1C23;
    font-weight: 400;
    font-size: 13px;
    transition: color 0.2s;
}

.outlet-detail-value a:hover {
    color: var(--primary-red-hover);
    text-decoration: underline;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .outlets-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .outlets-tabs {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .outlets-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .outlets-hero {
        height: 30vh;
        min-height: 250px;
    }
    .outlets-hero h1 {
        font-size: 2.2rem;
    }
    .outlets-hero .get-in-touch-badge {
        font-size: 0.85rem;
        padding: 6px 16px;
    }
    .outlets-tabs {
        padding: 0 20px;
        justify-content: flex-start;
        gap: 15px;
    }
    .outlets-tab {
        padding: 15px 5px;
    }
    .outlets-section {
        padding: 30px 20px;
    }
}
