/* Blog Page Specific Styles */
.blog-hero {
    background: linear-gradient(135deg, #303e3c 0%, #1a2926 100%);
    color: white;
    padding: 150px 0 60px;
    position: relative;
    overflow: hidden;
}

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.blog-hero .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    color: white;
    margin: 0 auto;
}

.blog-content-section {
    padding: 80px 0;
    background: #ffffff;
}

.blog-sidebar {
    padding-right: 30px;
    border-right: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    .blog-sidebar {
        padding-right: 0;
        border-right: none;
        margin-bottom: 40px;
    }
}

.color-white {
    color: white;
}

.sidebar-widget {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
}

.widget-title {
    color: #303e3c;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #b8b829;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title i {
    color: #b8b829;
}

.search-widget-form {
    position: relative;
}

.search-widget-input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s;
}

.search-widget-input:focus {
    border-color: #303e3c;
    outline: none;
    box-shadow: 0 0 0 3px rgba(48, 62, 60, 0.1);
}

.search-widget-btn {
    position: absolute;
    right: 8px;
    top: 8px;
    background: #b8b829;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.search-widget-btn:hover {
    background: #303e3c;
}

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

.categories-list li {
    margin-bottom: 10px;
}

.category-item {
    color: #333;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e8eff7;
    transition: all 0.3s;
    cursor: pointer;
}

.category-item:hover,
.category-item.active {
    color: #303e3c;
    padding-left: 10px;
}

.category-item.active {
    font-weight: 600;
}

.category-count {
    background: #b8b829;
    color: white;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 30px;
    text-align: center;
}

/* Recent Posts Widget */
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8eff7;
    cursor: pointer;
    align-items: flex-start;
}

.recent-post-item:hover {
    transform: translateX(5px);
    background: rgba(184, 184, 41, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-left: -15px;
    margin-right: -15px;
}

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

.recent-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.recent-post-content h4 {
    font-size: 0.95rem;
    margin: 0 0 5px 0;
    line-height: 1.4;
    color: #303e3c;
    font-weight: 600;
}

.recent-post-content p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
    flex-grow: 1;
}

.recent-post-meta {
    font-size: 0.75rem;
    color: #888;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.recent-post-meta i {
    color: #b8b829;
    font-size: 0.7rem;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    background: white;
    border: 1px solid #e0e0e0;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.tag-item:hover,
.tag-item.active {
    background: #303e3c;
    color: white;
    border-color: #303e3c;
    transform: translateY(-2px);
}

.blog-main-content {
    padding-left: 30px;
}

@media (max-width: 768px) {
    .blog-main-content {
        padding-left: 0;
    }
}

/* Blog Controls */
.blog-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.view-toggle {
    display: flex;
    gap: 10px;
}

.view-toggle-btn {
    background: white;
    border: 1px solid #e0e0e0;
    color: #666;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.view-toggle-btn:hover {
    border-color: #b8b829;
    color: #303e3c;
}

.view-toggle-btn.active {
    background: #303e3c;
    border-color: #303e3c;
    color: white;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-select {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: white;
    color: #333;
    cursor: pointer;
}

.sort-select:focus {
    outline: none;
    border-color: #303e3c;
}

/* Grid View */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e0e0e0;
    display: block;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #b8b829;
}

.blog-card-img {
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #666;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta-item i {
    color: #b8b829;
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-title a {
    color: #303e3c;
    text-decoration: none;
    transition: all 0.3s;
}

.blog-card-title a:hover {
    color: #b8b829;
}

.blog-card-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e8eff7;
}

.blog-category {
    background: #e8f4ff;
    color: #0066cc;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.read-more-btn {
    background: transparent;
    color: #303e3c;
    border: 2px solid #303e3c;
    padding: 6px 20px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.read-more-btn:hover {
    background: #303e3c;
    color: white;
    transform: translateY(-2px);
}

/* List View */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.blog-list-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: stretch;
}

@media (max-width: 768px) {
    .blog-list-item {
        flex-direction: column;
    }
}

.blog-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #b8b829;
}

.blog-list-img {
    flex: 0 0 40%;
    min-height: 250px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .blog-list-img {
        flex: 0 0 auto;
        height: 200px;
    }
}

.blog-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-list-item:hover .blog-list-img img {
    transform: scale(1.05);
}

.blog-list-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.blog-list-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-list-title a {
    color: #303e3c;
    text-decoration: none;
    transition: all 0.3s;
}

.blog-list-title a:hover {
    color: #b8b829;
}

.blog-list-excerpt {
    color: #666;
    margin-bottom: 20px
}
.blog-list-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #e8eff7;
  margin-top: auto;
}
 .pagination-container {
            display: flex;
            justify-content: center;
            margin-top: 50px;
        }
        
        .pagination {
            display: flex;
            gap: 10px;
        }
        
        .page-link {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border: 1px solid #e0e0e0;
            color: #333;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .page-link:hover {
            background: #f5f5f5;
            border-color: #b8b829;
        }
        
        .page-link.active {
            background: #303e3c;
            color: white;
            border-color: #303e3c;
        }

        /*Our Store location*/

         .app-container {
            max-width: 1920px;
            margin: 0 auto;
            padding: 0;
            min-height: 100vh;
        }

        /* Main Layout */
        .main-content {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 300px 1fr 380px;
            gap: 1.5rem;
            min-height: calc(100vh - 120px);
        }
      

        /* Sidebar */
        .sidebar {
            background: #ffffff;
            border-radius: 0.5rem;
            box-shadow:  0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); ;
            border: 1px solid #e8eaed;
            height: fit-content;
            position: sticky;
            top: 100px;
        }

        .sidebar-header {
            padding: 1.5rem;
            border-bottom: 1px solid #e8eaed;;
        }

        .sidebar-header h2 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1F2937;
            margin-bottom: 0.5rem;
        }

        .sidebar-header p {
            font-size: 0.875rem;
            color:  #6B7280;
        }
         .search-container {
            padding: 1rem 1.5rem;
            border-bottom: 1px solid #e8eaed;;
        }

        .search-box {
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 0.75rem 1rem 0.75rem 2.75rem;
            border: 1px solid #E5E7EB;        /* typical --border color */
            border-radius: 0.375rem;   
            font-size: 0.875rem;
            background: #F9FAFB;             /* typical --light color */
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); 
        }

        .search-input:focus {
            outline: none;
            border-color: #3B82F6;
            box-shadow: 0 0 0 3px var(--primary-light);
        }

        .search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #6B7280;
        }
        .store-list {
            max-height: 600px;
            overflow-y: auto;
            padding: 1rem;
        }

        .store-card {
            padding: 1rem;
            border: 1px solid #E5E7EB;        /* typical --gray-light */
            border-radius: 0.375rem;          /* typical --radius (6px) */
            margin-bottom: 0.75rem;           /* 12px */
            cursor: pointer;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);  /* typical --transition */
            background: #FFFFFF;  
        }

        .store-card:hover {
            border-color:#3B82F6;;
            box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
            transform: translateY(-1px);
        }

        .store-card.active {
            border-color: #3B82F6;
            background: #EFF6FF;
            box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
        }

        .store-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.75rem;
        }

        .store-name {
            font-weight: 600;
            color:#1F2937;
            font-size: 0.95rem;
        }

        .store-distance {
            font-size: 0.75rem;
            color: #3B82F6;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .store-info {
            font-size: 0.8125rem;
            color:  #6B7280;
        }

        .store-info-row {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.25rem;
        }

        .store-info-row i {
            width: 14px;
            color: #3B82F6;
        }

         /* Main Content - Maps */
        .maps-container {
            background: #FFFFFF;
            border-radius: 0.5rem;;
            box-shadow:  0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); 
            border: 1px solid #E5E7EB; 
            overflow: hidden;
        }

        .maps-header {
            padding: 1.5rem;
            border-bottom: 1px solid #E5E7EB; 
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .maps-header h2 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #6B7280;
        }

        .map-view-controls {
            display: flex;
            gap: 0.25rem;
            background: #F9FAFB;
            padding: 0.25rem;
            border-radius: 0.375rem;
        }
        .view-btn {
            padding: 0.5rem 1rem;
            border: none;
            background: transparent;
            font-size: 0.875rem;
            font-weight: 500;
            color: #6B7280;
            cursor: pointer;
            border-radius: 6px;
            transition: var(--transition);
        }

        .view-btn:hover {
            color: #3B82F6;
        }

        .view-btn.active {
            background: #FFFFFF;
            color: #3B82F6;
            box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
        }

        .dual-maps {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            padding: 1.5rem;
            height: 600px;
        }

        .map-wrapper {
            border: 1px solid #E5E7EB;
            border-radius: 0.375rem;
            overflow: hidden;
            background: #F9FAFB;
            display: flex;
            flex-direction: column;
        }

        .map-header {
            padding: 1rem;
            background: #FFFFFF;
            border-bottom: 1px solid #E5E7EB;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .map-header i {
            color: #3B82F6;
            font-size: 1.25rem;
        }

        .map-header span {
            font-weight: 500;
            color: #6B7280;
        }

        .map-content {
            flex: 1;
            position: relative;
            background:#F9FAFB;
        }

        .map-placeholder {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: #000000;
        }

        .map-placeholder i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            opacity: 0.3;
        }

        .map-frame {
            width: 100%;
            height: 100%;
            border: none;
        }

        .map-actions {
            padding: 1rem;
            background: #FFFFFF;
            border-top: 1px solid #E5E7EB;
            display: flex;
            gap: 0.75rem;
            margin: 0 auto;
        }
        /* Details Panel */
        .details-panel {
            background: #FFFFFF;
            border-radius: 0.5rem;
            box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); 
            border: 1px solid #E5E7EB;
            height: fit-content;
            position: sticky;
            top: 100px;
        }

        .details-header {
            padding: 1.5rem;
            border-bottom: 1px solid #E5E7EB;
        }

        .details-header h2 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #000000;
            margin-bottom: 0.5rem;
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.875rem;
            background: #10B981;
            color: #FFFFFF;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .details-content {
            padding: 1.5rem;
        }

        .details-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }

        .detail-section {
            margin-bottom: 1.5rem;
        }

        .detail-section h3 {
            font-size: 0.875rem;
            font-weight: 600;
            color: #000000;
            text-transform: uppercase;
            letter-spacing: 0.025em;
            margin-bottom: 0.75rem;
        }

        .detail-section p {
            color: #000000;
            font-size: 0.9375rem;
            line-height: 1.5;
        }
        .actions-container {
  padding: 1.5rem;
  border-top: 1px solid #E5E7EB;
}
.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.dual-maps {
    display: flex;
    gap: 20px;
    width: 100%;
}

.map-wrapper {
    flex: 1;
    transition: all 0.3s ease;
}
.dual-view .map-wrapper {
    flex: 1;
}

.single-view .map-wrapper {
    flex: 1 1 100%;
}
.map-frame {
    width: 100%;
    height: 400px; /* or 100% if parent has height */
    min-height: 350px;
}

.map-content {
    height: 100%;
}

.map-wrapper {
    height: 100%;
}
.map-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.map-btn {
    padding: 8px 14px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

.map-btn:hover {
    background: #333;
}

  /* Responsive */
        @media (max-width: 1200px) {
            .main-content {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .sidebar, .details-panel {
                position: static;
            }
            
            .dual-maps {
                grid-template-columns: 1fr;
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .main-content {
                padding: 0 1rem;
            }
            
            .app-header {
                padding: 1rem;
            }
            
            .header-content {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }
            
            .header-stats {
                width: 100%;
                justify-content: space-between;
            }
            
            .maps-header {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }
            
            .map-view-controls {
                width: 100%;
                justify-content: center;
            }
        }


/*Location View page*/

        
        .contact-info {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }
        
        .phone-number {
            font-size: 26px;
            font-weight: 800;
            color: #b8b829;
            margin-bottom: 5px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        
        .badge {
            background: #b8b829;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
            margin-top: 5px;
        }
        
        /* Modern Hero Section */
        .hero {
            background: linear-gradient(135deg, #303e3c 0%, #1a2926 100%);
            background-size: cover;
            background-position: center;
            color: white;
            padding: 200px 0;
            border-radius: 0 0 20px 20px;
            margin-bottom: 50px;
            text-align: center;
            box-shadow:  0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        }

             .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            /* width: 50%; */
            height: 100%;
            /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>'); */
            background-size: cover;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.95;
            color: white;
        }
        
        .hero-stats {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }
        
        .stat-item {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: 10px;
            min-width: 150px;
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .stat-number {
            font-size: 36px;
            font-weight: 800;
            color: #b8b829;
            display: block;
        }
        
        .stat-label {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Modern Card Styles */
        .card {
            background: var(--white);
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--shadow-light);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow:  0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        }
        
        .card-icon {
            font-size: 40px;
            color: #2E8B57;
            margin-bottom: 20px;
        }
        
        .card-title {
            color: var(--primary-dark);
            margin-bottom: 15px;
            font-size: 22px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .card-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: #b8b829;
            border-radius: 3px;
        }
        
        /* Section Title */
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: var(--primary-dark);
            font-size: 36px;
            position: relative;
            padding-bottom: 15px;
        }
 
        
        /* Zigzag Layout Styles */
        .zigzag-section {
            padding: 40px 0;
        }
        
        .zigzag-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .zigzag-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .zigzag-item:hover {
            transform: translateY(-5px);
            box-shadow:  0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        }
        
        .zigzag-item.reverse {
            flex-direction: row-reverse;
        }
        
        .zigzag-image {
            flex: 1;
            min-height: 300px;
            background-size: cover;
            background-position: center;
            border-radius: 0;
        }
        
        .zigzag-content {
            flex: 1;
            padding: 40px;
        }
        
        .zigzag-content h2 {
            color: var(--primary-dark);
            margin-bottom: 15px;
            font-size: 28px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .zigzag-content h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: #b8b829;
        }
        
        .zigzag-content p {
            margin-bottom: 15px;
            font-size: 16px;
            color: var(--medium-gray);
        }
        
        .zigzag-features {
            margin-top: 20px;
            list-style: none;
            padding-left: 0;
        }
        
        .zigzag-features li {
            margin-bottom: 8px;
            padding-left: 25px;
            position: relative;
        }
        
        .zigzag-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #2E8B57;
            font-weight: bold;
        }
        
        .zigzag-button {
            display: inline-block;
            background-color: #b8b829;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: bold;
            text-decoration: none;
            margin-top: 20px;
            transition: background-color 0.3s;
        }
        
        .zigzag-button:hover {
            background-color: #9c9c23;
        }
        
        /* Modern FAQ Tabs */
        .faq-section {
            margin: 60px 0;
        }
        
        .faq-tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-bottom: 30px;
        }
        
        .tab-btn {
            background: var(--white);
            border: none;
            padding: 15px 25px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
            color: var(--medium-gray);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .tab-btn i {
            font-size: 18px;
        }
        
        .tab-btn:hover {
            background: #2E8B57;
            color: white;
            transform: translateY(-3px);
        }
        
        .tab-btn.active {
            background: var(--gradient-accent);
            color: white;
            box-shadow: 0 5px 15px rgba(184, 184, 41, 0.3);
        }
        
        .faq-content {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
        }
        
        .tab-pane {
            display: none;
            padding: 30px;
        }
        
        .tab-pane.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .faq-item {
            border-bottom: 1px solid var(--light-gray);
            padding: 20px 0;
            cursor: pointer;
        }
        
        .faq-item:last-child {
            border-bottom: none;
        }
        
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 18px;
            color: var(--primary-dark);
        }
        
        .faq-question i {
            color: var(--accent-orange);
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            color: var(--medium-gray);
            line-height: 1.7;
            padding-right: 30px;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            margin-top: 15px;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
          /* Enhanced Store Locator */
        .store-locator {
            margin: 60px 0;
        }
        
        .store-tabs {
            display: flex;
            border-radius: 40px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
            background: white;
        }
        
        .store-tab {
            flex: 1;
            padding: 25px;
            background: white;
            border: none;
            font-size: 20px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            position: relative;
            color: var(--medium-gray);
        }
        
        .store-tab i {
            font-size: 26px;
        }
        
        .store-tab:hover {
            background: rgba(46, 139, 87, 0.1);
            color: #2E8B57;
        }
        
        .store-tab.active {
           background: #303e3c;
            color: white;
        }
        
       /* .store-tab.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 4px;
            background: #b8b829;
        }
        */
        .store-content {
            background: var(--white);
            border-radius: 0 0 15px 15px;
            padding: 0;
            box-shadow:  0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            overflow: hidden;
        }
        
        .store-pane {
            display: none;
            min-height: 600px;
        }
        
        .store-pane.active {
            display: flex;
            flex-wrap: wrap;
        }
        
        /* Enhanced Map Section */
        .store-map {
            flex: 1;
            min-width: 350px;
            padding: 0;
            background: #f5f5f5;
        }
        
        .map-container {
            width: 100%;
            height: 100%;
            min-height: 600px;
            position: relative;
        }
        
        .map-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--medium-gray);
            font-weight: 600;
            padding: 20px;
            text-align: center;
        }
        
        .map-placeholder i {
            font-size: 80px;
            margin-bottom: 20px;
            color: #2E8B57;
        }
        .store-list {
  width: 100%;
  background: #fff;
}

 .store-locator {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
      font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
    }
  
    .section-title {
      text-align: center;
      margin-bottom: 30px;
    }
    .section-title h2 {
      font-size: 2rem;
      color: #303e3c;
      margin-bottom: 8px;
    }
    .bar {
      width: 70px;
      height: 4px;
      background: #d4a373;
      margin: 0 auto;
      border-radius: 2px;
    }
  
    /* Tabs */
    .store-tabs {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 30px;
      border-bottom: 2px solid #eee;
      border-radius: 30px;
      
    }
    .store-tab {
      background: none;
      border: none;
      padding: 18px 30px;
      font-size: 1.1rem;
      font-weight: 600;
      color: #666;
      border-radius: 40px;
      cursor: pointer;
      transition: all 0.2s;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .store-tab i {
      font-size: 1.2rem;
    }
    .store-tab.active {
      background: #303e3c;
      color: white;
    }
    .store-tab:hover:not(.active) {
      background: #f0f0f0;
    }
  
    /* Panes */
    .store-content {
      min-height: 500px;
    }
    .store-pane {
      display: none;
      opacity: 0;
      transition: opacity 0.25s;
    }
    .store-pane.active {
      display: block;
      opacity: 1;
    }
  
    /* Store list – full width */
    .store-list {
      width: 100%;
      background: #fff;
    }
  
    .store-list-header {
      margin-bottom: 24px;
    }
    .store-list-header h3 {
      font-size: 1.6rem;
      color: #303e3c;
      display: flex;
      align-items: center;
      gap: 12px;
      border-bottom: 2px solid #f0f0f0;
      padding-bottom: 12px;
    }
    .store-count-badge {
      background: #d4a373;
      color: white;
      padding: 4px 12px;
      border-radius: 30px;
      font-size: 0.9rem;
      font-weight: 500;
    }
  
    /* ----- GRID: EXACTLY 2 COLUMNS ----- */
    .store-list > .store-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
      gap: 24px;
      margin-top: 0;
    }
  
    /* Store card */
    .store-card {
      background: #ffffff;
      border-radius: 20px;
      padding: 24px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.04);
      transition: transform 0.2s, box-shadow 0.2s;
      border: 1px solid #f0e9e4;
      display: flex;
      flex-direction: column;
    }
    .store-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    }
  
    .store-name {
      font-size: 1.3rem;
      font-weight: 700;
      color: #303e3c;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
      border-bottom: 2px solid #e6dcd4;
      padding-bottom: 12px;
    }
    .store-name i {
      color: #d4a373;
      font-size: 1.2rem;
    }
    .store-details {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 10px;
      color: #3d4c5e;
      font-size: 0.98rem;
      line-height: 1.5;
    }
    .store-details i {
      color: #8b7a6a;
      width: 18px;
      text-align: center;
      margin-top: 3px;
    }
    .store-contact {
      display: flex;
      gap: 12px;
      margin-top: 16px;
      flex-wrap: wrap;
    }
    .contact-btn {
      background: white;
      border: 1.5px solid #303e3c;
      color: #303e3c;
      padding: 10px 18px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: 0.15s;
      flex: 1 1 auto;
      justify-content: center;
    }
    .contact-btn i {
      font-size: 0.95rem;
    }
    .contact-btn.phone {
      background: #303e3c;
      color: white;
      border-color: #303e3c;
    }
    .contact-btn:hover {
      background: #a8b200;
      color: white;
      border-color: #a8b200;
    }
  
    /* Mobile: switch to 1 column */
    @media (max-width: 700px) {
      .store-list > .store-grid {
        grid-template-columns: 1fr;
      }
      .store-tabs {
        flex-direction: column;
        align-items: stretch;
      }
    }
        /* Store List Enhancement 
        .store-list {
            flex: 1;
            min-width: 350px;
            padding: 30px;
            max-height: 600px;
            overflow-y: auto;
            background: linear-gradient(to bottom, white, #f8fafc);
        }*/
        
        .store-list-header {
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--light-gray);
        }
        
        .store-list-header h3 {
            color: var(--primary-dark);
            font-size: 24px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .store-list-header h3 i {
            color: #b8b829;
        }
        
        .store-count-badge {
            background: #d4a373;
            color: var(--primary-dark);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 700;
            margin-left: 10px;
        }
        
        .store-list::-webkit-scrollbar {
            width: 5px;
        }
        
        .store-list::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .store-list::-webkit-scrollbar-thumb {
            background: #d7dade;
            border-radius: 10px;
        }
        
        .store-item {
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 15px;
            background: white;
            border-left: 4px solid #2E8B57;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 1px solid var(--light-gray);
        }
        
        .store-item:hover {
            background: rgba(46, 139, 87, 0.05);
            transform: translateX(10px);
            border-left-color: #b8b829;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .store-item:last-child {
            border-bottom: none;
        }
        
        .store-name {
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 18px;
        }
        
        .store-name i {
            color: #d4a373;
            font-size: 20px;
        }
        
        .store-details {
            color: var(--medium-gray);
            font-size: 14px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .store-details i {
            color: #8b7a6a;
            width: 16px;
        }
        
        .store-contact {
            display: flex;
            gap: 12px;
            margin-top: 15px;
            flex-wrap: wrap;
        }
        
        .contact-btn {
           background: white;
  border: 1.5px solid #303e3c;
  color: #303e3c;
  padding: 10px 18px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: 0.15s;
  flex: 1 1 auto;
  justify-content: center;
        }
        
        .contact-btn:hover {
          background: #a8b200;
  color: white;
  border-color: #a8b200;
        }
        
        .contact-btn.phone {
          background: #303e3c;
  color: white;
  border-color: #303e3c;
        }
        
        .contact-btn.phone:hover {
            background: #a0a023;
        }
        
        /* Online Store Design */
        .online-stores {
            margin: 60px 0;
        }
        
        .online-stores-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .online-store-card {
            background: var(--white);
            border-radius: 10px;
            padding: 25px;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
            border-top: 4px solid #b8b829;
            text-align: center;
        }
        
        .online-store-card:hover {
            transform: translateY(-5px);
            box-shadow:  0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        }
        
        .online-store-icon {
            font-size: 40px;
            color: #2E8B57;
            margin-bottom: 15px;
        }
        
        .online-store-name {
            color: var(--primary-dark);
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 18px;
        }
        
        .online-store-region {
            color: var(--medium-gray);
            font-size: 14px;
            margin-bottom: 15px;
        }
        
        .online-store-btn {
            background: var(--gradient-accent);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .online-store-btn:hover {
            background: var(--primary-dark);
        }
        
        /* Modern Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }
        
        /* Modern CTA Section */
        .cta-section {
            background: var(--gradient-primary);
            color: white;
            padding: 60px 0;
            border-radius: 20px;
            margin: 60px 0;
            text-align: center;
            box-shadow:  0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: #b8b829;
        }
        
        .cta-title {
            font-size: 42px;
            margin-bottom: 20px;
            font-weight: 800;
        }
        
        .cta-subtitle {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .cta-button {
            padding: 18px 35px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 18px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .cta-button.primary {
            background: #b8b829;
            color: white;
        }
        
        .cta-button.secondary {
            background: rgba(255,255,255,0.2);
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
            backdrop-filter: blur(10px);
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }
        
        /* Modern Footer */
        .footer {
            background: var(--primary-dark);
            color: white;
            padding: 60px 0 30px;
            margin-top: 60px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-title {
            color: #b8b829;
            margin-bottom: 25px;
            font-size: 22px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: #b8b829;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-links a:hover {
            color: #b8b829;
            transform: translateX(5px);
        }
        
        .footer-contact .phone {
            font-size: 28px;
            font-weight: 800;
            color: #b8b829;
            margin: 15px 0;
            display: block;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: #b8b829;
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
            font-size: 14px;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .store-pane.active {
                flex-direction: column;
            }
            
            .zigzag-item,
            .zigzag-item.reverse {
                flex-direction: column;
            }
            
            .zigzag-image {
                width: 100%;
                min-height: 250px;
            }
            
            .zigzag-content {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .contact-info {
                align-items: center;
            }
            
            .hero {
                padding: 60px 0;
            }
            
            .hero h1 {
                font-size: 30px;
            }
            
            .hero-stats {
                gap: 15px;
            }
            
            .stat-item {
                min-width: 120px;
                padding: 15px;
            }
            
            .stat-number {
                font-size: 28px;
            }
            
            .cta-title {
                font-size: 32px;
            }
            
            .cta-button {
                padding: 15px 25px;
                font-size: 16px;
            }
            
            .tab-btn, .store-tab {
                padding: 12px 20px;
                font-size: 14px;
            }
            
            .zigzag-content {
                padding: 25px;
            }
            
            .zigzag-content h2 {
                font-size: 24px;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 26px;
            }
            
            .section-title {
                font-size: 26px;
            }
            
            .cta-title {
                font-size: 26px;
            }
            
            .faq-tabs {
                flex-direction: column;
            }
            
            .store-tabs {
                flex-direction: column;
            }
        }
   