/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #fff;
    color: #000;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Promo Banner */
.promo-banner {
    background-color: #8a6a8f;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.promo-banner strong {
    font-weight: 600;
}

.promo-banner sup {
    font-size: 9px;
}

/* Main Header */
.main-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #000;
}

/* Search Box */
.search-box {
    flex: 1;
    max-width: 400px;
    display: flex;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
}

.search-box input:focus {
    border-color: #000;
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #666;
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 20px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.action-btn:hover {
    background-color: #f5f5f5;
}

.action-btn i {
    font-size: 20px;
    color: #000;
}

.action-btn span {
    font-size: 11px;
    line-height: 1.3;
    color: #000;
    font-weight: 500;
}

/* Navigation */
.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav-list::-webkit-scrollbar {
    display: none;
}

.nav-list li a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: #000;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: border-color 0.2s;
}

.nav-list li a:hover,
.nav-list li a.active {
    border-bottom-color: #000;
}

/* Breadcrumb */
.breadcrumb {
    background-color: #f8f8f8;
    padding: 15px 0;
    font-size: 13px;
    color: #666;
}

.breadcrumb i {
    font-size: 10px;
    margin: 0 8px;
    color: #999;
}

.breadcrumb .current {
    color: #000;
    font-weight: 500;
}

/* Action Buttons Section */
.action-buttons {
    padding: 40px 0;
    background-color: #fff;
}

.action-buttons .container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 30px;
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
    text-align: center;
}

.action-card:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.action-card i {
    font-size: 28px;
}

.action-card span {
    font-size: 13px;
    font-weight: 600;
}

/* Gift Cards Sections */
.gift-cards-section {
    padding: 50px 0;
    background-color: #fff;
}

.gift-cards-section:nth-child(even) {
    background-color: #fafafa;
}

.gift-cards-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.gift-card.physical.border {
    border: 1px solid #000;
    border-radius: 12px;
    padding: 15px;
    transition: box-shadow 0.3s ease;
}

.gift-card.physical.border:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.cards-row {
    display: grid;
    gap: 25px;
}

.two-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.four-cards {
    grid-template-columns: repeat(4, 1fr);
}

.gift-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gift-card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-label {
    background-color: rgba(255,255,255,0.95);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gift-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.gift-card p {
    font-size: 13px;
    color: #666;
}

/* Check Balance Section */
.check-balance-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.balance-box {
    max-width: 500px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.balance-box h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.balance-box > p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
}

.balance-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

/* Wide balance box */
.balance-box.wide {
    max-width: 800px;
    width: 100%;
}

/* Row layout for form fields */
.balance-form.row-layout {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.balance-form.row-layout .form-group {
    flex: 1;
    min-width: 200px;
}

.balance-form.row-layout .form-group input {
    width: 100%;
}

.balance-form.row-layout .check-btn {
    height: fit-content;
    padding: 14px 32px;
    margin-bottom: 2px;
}

/* Responsive: stack on mobile */
@media (max-width: 600px) {
    .balance-form.row-layout {
        flex-direction: column;
        align-items: stretch;
    }
    
    .balance-form.row-layout .check-btn {
        width: 100%;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: #000;
}

.check-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.check-btn:hover {
    background-color: #333;
}

.recaptcha-note {
    font-size: 11px;
    color: #999;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.5;
}

.recaptcha-note a {
    color: #000;
    text-decoration: underline;
}

.phone-note {
    text-align: center;
    font-size: 14px;
    color: #666;
}

/* Top Picks Section */
.top-picks-section {
    padding: 60px 0;
    background-color: #fff;
}

.top-picks-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.products-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.product-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card.border {
    border: 1px solid #000;
    padding: 15px;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.product-card.border:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border: 1px solid #eee;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.product-placeholder {
    color: #999;
    font-size: 14px;
}

.product-card h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.product-card p {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.3;
}

.price {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

/* Footer */
.main-footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #999;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #666;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #fff;
    font-size: 20px;
    transition: opacity 0.2s;
}

.social-links a:hover {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .four-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    .search-box {
        order: 3;
        max-width: 100%;
        width: 100%;
        margin-top: 15px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .action-btn span {
        display: none;
    }
    
    .action-buttons .container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .action-card {
        flex-direction: row;
        justify-content: flex-start;
        min-width: auto;
    }
    
    .two-cards,
    .four-cards {
        grid-template-columns: 1fr;
    }
    
    .products-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .balance-box {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .products-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Section 6: Corporate Gift Cards */
.corporate-section {
    padding: 80px 0;
    background-color: #fff;
}

.corporate-content {
    background-color: #faf1ee;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.corporate-text{
    padding: 0 20px;
}

.corporate-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.corporate-text p {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

.shop-now-btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.shop-now-btn:hover {
    background-color: #333;
}

.corporate-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Section 7: Features Grid */
.features-grid-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-item i {
    font-size: 36px;
    margin-bottom: 20px;
    color: #000;
}

.feature-item h4 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

/* Section 8: Kohl's */
.kohls-section {
    padding: 80px 0;
    background-color: #fff;
}

.kohls-content {
    background-color: #faf1ee;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.kohls-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.kohls-text {
    
}

.kohls-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.kohls-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.find-store-btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.find-store-btn:hover {
    background-color: #333;
}

/* Section 9: FAQ Banner */
.faq-banner {
    padding: 50px 0;
    background-color: #faf1ee;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.faq-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.faq-text p {
    font-size: 16px;
    color: #666;
}

.faq-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid #000;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.faq-btn:hover {
    background-color: #000;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .corporate-content,
    .kohls-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .corporate-text h2,
    .kohls-text h2 {
        font-size: 32px;
    }
    
    .features-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .features-row {
        grid-template-columns: 1fr;
    }
}

/* Section 7: Features Grid with Cards */
.features-grid-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 8px;
    padding: 40px 25px;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 40px;
    margin-bottom: 20px;
    color: #000;
}

.feature-card h4 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: #000;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .features-row {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}