* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

/* Top Banner */
.top-banner {
    background-color: #000;
    padding: 8px 0;
    text-align: center;
    width: 100%;
}

.banner-text {
    color: #fff;
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}

.banner-link {
    color: #fff;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.banner-link:hover {
    opacity: 0.7;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.header-left {
    display: flex;
    align-items: center;
}

.brand-name {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
}

.brand-logo {
    height: 24px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    transition: opacity 0.2s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

/* Promotional Banner */
.promo-banner-section {
    background-color: #DCFF7A;
    padding: 40px 40px;
    text-align: center;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.banner-title {
    font-size: 32px;
    font-weight: 300;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.0;
}

.banner-subtitle {
    font-size: 32px;
    font-weight: 300;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.0;
}

.banner-cta {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 400;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
    margin-bottom: 32px;
}

.banner-cta:hover {
    background-color: #333;
    transform: translateY(-1px);
}

.banner-tagline {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.5px;
}

/* Main Content Styles */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    min-height: calc(100vh - 120px);
    background-color: #ffffff;
    width: 100%;
}

.text-section {
    text-align: center;
    max-width: 1200px;
    margin-bottom: 60px;
}

.main-heading {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.4;
    color: #333;
    margin: 0 0 20px 0;
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heading-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    text-align: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.heading-text.active {
    opacity: 1;
}

.subtitle {
    font-size: 18px;
    font-weight: 300;
    color: #333;
    margin: 40px 0 0 0;
}

/* Promo Sections */


.product-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.category-section {
    background-color: #fff;
    padding: 20px 0;
    margin-bottom: 30px;
    width: 100%;
}

.category-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.category-btn {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.category-btn:hover {
    background-color: #f5f5f5;
}

.category-btn.active {
    background-color: #e0e0e0;
    color: #000;
}

.category-all {
    background-color: #f5f5f5;
}

.category-all.active {
    background-color: #e8e8e8;
}

.products-layout {
    display: block;
    width: 100%;
}

.product-filters {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 20px;
}

.filter-section {
    margin-bottom: 32px;
}

.filter-section:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 8px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.filter-option:hover {
    color: #666;
}

.filter-checkbox {
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 2px;
    cursor: pointer;
    appearance: none;
    position: relative;
    transition: all 0.2s ease;
}

.filter-checkbox:checked {
    background-color: #333;
    border-color: #333;
}

.filter-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.filter-label {
    font-size: 14px;
    color: #333;
    font-weight: 400;
}

.color-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    flex-shrink: 0;
}

.color-swatch.black { background-color: #000; }
.color-swatch.blue { background-color: #0066cc; }
.color-swatch.brown { background-color: #8B4513; }
.color-swatch.green { background-color: #228B22; }
.color-swatch.grey { background-color: #808080; }
.color-swatch.multi-color { 
    background: linear-gradient(45deg, #ff0000, #00ff00, #0000ff);
    border: 1px solid #ccc;
}
.color-swatch.orange { background-color: #ff6600; }
.color-swatch.pink { background-color: #ffc0cb; }
.color-swatch.purple { background-color: #800080; }
.color-swatch.red { background-color: #ff0000; }
.color-swatch.white { 
    background-color: #fff; 
    border: 1px solid #ccc;
}
.color-swatch.yellow { background-color: #ffff00; }

/* Brand Logo Promotional Section */
.brand-promo-section {
    background-color: #f8f8f8;
    padding: 60px 40px;
    margin: 40px 0 0 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.brand-promo-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.brand-promo-title {
    font-size: 24px;
    font-weight: 300;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.4;
}

.brand-promo-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    margin: 0;
}

.brand-promo-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-promo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.brand-promo-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.brand-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

/* Social Media Services Section */
.social-media-section {
    background-color: #f8f8f8;
    padding: 60px 40px;
    margin: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.social-media-container {
    max-width: 1200px;
    margin: 0 auto;
}

.social-media-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.social-media-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-placeholder {
    width: 100%;
    height: 400px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.social-media-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.social-media-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.social-media-title {
    font-size: 24px;
    font-weight: 300;
    color: #333;
    margin-bottom: 32px;
    line-height: 1.4;
}

.social-media-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 400;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
    font-family: 'Inter', sans-serif;
    align-self: flex-start;
}

.social-media-btn:hover {
    background-color: #333;
    transform: translateY(-1px);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-item {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 3/4;
    overflow: hidden;
    background-color: #FFFFFF;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.product-image img, .product-item img {
    position: relative;
    z-index: 0;
}

.product-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    opacity: 1;
    z-index: 1;
}

.product-item:hover .product-overlay-actions { opacity: 1; }

.product-overlay-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    border: none;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn .whatsapp-icon-small {
    width: 14px !important;
    height: 14px !important;
    object-fit: contain;
    max-width: 14px !important;
    max-height: 14px !important;
    flex-shrink: 0;
}

.action-btn {
    background: #ffffff;
    color: #333;
    border: 1px solid #e0e0e0;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.action-btn:hover { transform: translateY(-1px); background: #f5f5f5; }

.action-btn .email-icon {
    width: 14px;
    height: 14px;
    stroke: #333;
    flex-shrink: 0;
}

.product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover img {
    transform: scale(1.02);
}

.product-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-item:hover .product-label {
    opacity: 1;
}

/* Product label when outside the image */
.product-item .product-label:last-child {
    position: static;
    color: #333;
    text-shadow: none;
    opacity: 1;
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

/* Product Modal Styles */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.product-modal {
    background: white;
    border-radius: 12px;
    max-width: 1000px;
    width: 90%;
    max-height: 90vh;
    overflow: visible;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-modal-overlay.active .product-modal {
    transform: scale(1);
}

.product-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s ease;
}

.product-modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.product-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex: 1;
    overflow: hidden;
}

.product-modal-image {
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.product-modal-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.product-modal-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    height: 100%;
}

.product-modal-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.product-modal-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.product-modal-specs {
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.spec-value {
    color: #666;
    font-size: 14px;
    text-align: right;
}

.product-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.product-modal-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-modal-btn.whatsapp-btn {
    background: #25D366;
    color: white;
}

.product-modal-btn.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-1px);
}

.product-modal-btn.email-btn {
    background: #333;
    color: white;
}

.product-modal-btn.email-btn:hover {
    background: #555;
    transform: translateY(-1px);
}

.product-modal-btn.sample-btn {
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
}

.product-modal-btn.sample-btn:hover {
    background: #e0e0e0;
    transform: translateY(-1px);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: white;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-tabs {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    background: #f8f8f8;
}

.tab {
    flex: 1;
    padding: 15px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: none;
}

.tab.active {
    color: #333;
    background: white;
    border-bottom: 2px solid #333;
}

.tab:hover:not(.active) {
    background: #f0f0f0;
}

.modal-content {
    padding: 30px;
}

.modal-instruction {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.selection-btn {
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.selection-btn:hover {
    border-color: #333;
    background: #f8f8f8;
}

.selection-btn.selected {
    border-color: #333;
    background: #333;
    color: white;
}

.address-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.address-input {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    background: white;
    transition: border-color 0.2s ease;
}

.address-input:focus {
    outline: none;
    border-color: #333;
}

.address-input::placeholder {
    color: #999;
}

.cost-estimate {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cost-estimate .estimate-amount {
    min-width: 60px;
    text-align: right;
}

.estimate-btn {
    padding: 10px 16px;
    background: #333;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.estimate-btn:hover {
    background: #555;
    transform: translateY(-1px);
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-top: 1px solid #e0e0e0;
    background: #f8f8f8;
}

.selected-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.item-thumbnail {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    overflow: hidden;
}

.item-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.cost-estimate {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cost-estimate span:first-child {
    font-size: 14px;
    color: #666;
}

.estimate-amount {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f0f0f0;
    color: #333;
}

/* Contact Modal */
.contact-modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    display: none; align-items: center; justify-content: center;
    z-index: 1000;
}
.contact-modal-overlay.active { display: flex; }

.contact-modal {
    background: #fff; border-radius: 8px; width: 92%; max-width: 520px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}
.contact-modal-header { padding: 18px 22px; border-bottom: 1px solid #eee; display:flex; justify-content:space-between; align-items:center; }
.contact-modal-title { font-size: 18px; font-weight: 600; color:#333; }
.contact-modal-close { background:none; border:none; font-size:22px; cursor:pointer; color:#666; }
.contact-modal-body { padding: 18px 22px; display:flex; flex-direction:column; gap:12px; }
.contact-input { padding: 10px 12px; border:1px solid #e0e0e0; border-radius:6px; font-size:14px; }
.contact-textarea { min-height: 120px; resize: vertical; }
.contact-submit { margin-top: 8px; padding: 12px 16px; background:#333; color:#fff; border:none; border-radius:6px; cursor:pointer; font-weight:600; }
.contact-submit:hover { background:#555; }

/* Reviews Section */
.reviews-section {
    width: 100vw;
    background-color: #f8f8f8;
    padding: 60px 40px;
    margin: 0;
    margin-left: calc(-50vw + 50%);
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-title {
    font-size: 24px;
    font-weight: 300;
    color: #222;
    text-align: center;
    margin-bottom: 20px;
}

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #ffd700;
    font-size: 20px;
}

.reviews-count {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.reviews-carousel {
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    width: max-content;
}

.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
    width: 320px;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

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

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.verified-badge {
    font-size: 12px;
    color: #666;
    font-weight: 400;
}

.review-date {
    font-size: 14px;
    color: #999;
}

.review-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.review-rating .star {
    font-size: 16px;
}

.review-title {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}

.review-text {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 16px;
}

.review-product {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.product-thumb {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
}

.product-name {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0 0 0;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.footer-logo {
    height: 28px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    align-self: flex-start;
}

.footer-description {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-label {
    font-size: 14px;
    color: #999;
    font-weight: 500;
}

.contact-link {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #ccc;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    font-size: 14px;
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 14px;
    color: #999;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.legal-link {
    font-size: 14px;
    color: #999;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-link:hover {
    color: #fff;
}

/* Behind The Scenes Section */
.bts-section {
    background-color: #f8f8f8;
    padding: 60px 40px;
    margin: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.bts-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.bts-title {
    font-size: 24px;
    font-weight: 300;
    color: #333;
    margin-bottom: 40px;
}

.bts-video-wrap {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.bts-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Us Section */
.contact-us-section {
    background-color: #fff;
    padding: 80px 40px;
    margin: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.contact-us-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-us-title {
    font-size: 24px;
    font-weight: 300;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
}

.contact-us-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    padding-right: 20px;
}

.contact-info-title {
    font-size: 24px;
    font-weight: 300;
    color: #333;
    margin-top: 32px;
    margin-bottom: 16px;
}

.contact-info-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.response-note {
    font-size: 14px;
    color: #666;
    margin-top: 20px;
    font-style: italic;
}


.whatsapp-note {
    font-size: 12px;
    color: #888;
    margin-top: 20px;
    margin-bottom: 8px;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.location-icon {
    font-size: 16px;
}

.location-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.map-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.google-map {
    border-radius: 8px;
    width: 100%;
    height: 200px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
}

.whatsapp-contact {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, opacity 0.2s ease;
    border-radius: 8px;
    padding: 8px;
}

.whatsapp-contact:hover {
    transform: translateY(-2px);
    opacity: 0.8;
    background-color: rgba(37, 211, 102, 0.1);
}

/* Contact Form Success States */
.contact-form-success {
    text-align: center;
    padding: 40px 20px;
    background: #f8fff8;
    border: 2px solid #25D366;
    border-radius: 12px;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.success-title {
    font-size: 24px;
    font-weight: 600;
    color: #25D366;
    margin-bottom: 15px;
}

.success-message {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.success-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.success-btn:hover {
    background: #20BA5A;
}

.success-link {
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.success-link:hover {
    background: #e0e0e0;
}

/* Modal Success State */
.modal-success {
    text-align: center;
    padding: 30px 20px;
}

.modal-success .success-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.modal-success .success-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.modal-success .success-message {
    font-size: 14px;
    margin-bottom: 20px;
}

.modal-success .success-btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* Error States */
.contact-form-error,
.modal-error {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-detail-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.contact-detail-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.contact-form {
    background-color: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
}

.contact-form-title {
    font-size: 24px;
    font-weight: 300;
    color: #333;
    margin-bottom: 16px;
}

.contact-form-element {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #333;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
    font-family: 'Inter', sans-serif;
    align-self: flex-start;
}

.contact-submit-btn:hover {
    background-color: #333;
    transform: translateY(-1px);
}

/* Mobile Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: #333333;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Design */
@media (min-width: 769px) {
    .hamburger-menu {
        display: none !important;
    }
    
    .nav-links {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        box-shadow: none !important;
    }
}

@media (max-width: 1024px) {
    .promo-banner-section {
        padding: 30px 20px;
    }
    
    .banner-title {
        font-size: 36px;
    }
    
    .banner-subtitle {
        font-size: 36px;
    }
    
    .main-content {
        padding: 0;
    }
    
    .product-section {
        padding: 0;
        max-width: 1200px;
    }
    
    .text-section {
        margin-bottom: 40px;
    }
    
    .main-heading {
        font-size: 36px;
    }
    
    .product-grid {
        gap: 20px;
    }
    
    .product-item {
        max-width: 280px;
    }

    
    .reviews-section {
        padding: 40px 20px;
    }
    
    .reviews-title {
        font-size: 28px;
    }
    
    .review-card {
        width: 280px;
    }
    
    .category-container {
        padding: 0 20px;
        gap: 8px;
    }
    
    .category-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .products-layout {
        display: block;
    }
    
    .brand-promo-section {
        padding: 50px 20px;
        margin: 0;
    }
    
    .brand-promo-title {
        font-size: 28px;
    }
    
    .brand-promo-images {
        gap: 20px;
        width: 100%;
    }
    
    .brand-promo-img {
        height: 250px;
    }
    
    .social-media-section {
        padding: 50px 20px;
        margin: 0;
    }
    
    .social-media-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .social-placeholder {
        height: 300px;
    }
    
    .social-media-img {
        height: 300px;
    }
    
    .social-media-title {
        font-size: 28px;
        text-align: center;
    }
    
    .social-media-btn {
        align-self: center;
    }
    
    .bts-section {
        padding: 40px 20px;
    }
    
    .bts-title {
        font-size: 22px;
    }
    
    .bts-video-wrap {
        max-width: 500px;
    }
    
    .contact-us-section {
        padding: 60px 20px;
    }
    
    .contact-us-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex !important;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 18px;
        font-weight: 500;
    }
    
    .promo-banner-section {
        padding: 25px 20px;
    }
    
    .banner-title {
        font-size: 28px;
    }
    
    .banner-subtitle {
        font-size: 28px;
    }
    
    .banner-cta {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .banner-tagline {
        font-size: 12px;
    }
    
    .top-banner {
        padding: 6px 0;
    }
    
    .banner-text {
        font-size: 13px;
    }
    
    .header {
        padding: 12px 0;
    }
    
    .brand-logo {
        height: 22px;
    }
    
    .main-content {
        padding: 0;
    }
    
    .product-section {
        padding: 0;
        max-width: 1200px;
    }
    
    .main-heading {
        font-size: 28px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 0 15px;
    }
    
    .product-item {
        max-width: 100%;
    }

    
    .reviews-section {
        padding: 30px 20px;
    }
    
    .reviews-title {
        font-size: 20px;
    }
    
    .review-card {
        width: 300px;
        padding: 20px;
    }
    
    .category-container {
        padding: 0 20px;
        gap: 6px;
    }
    
    .category-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .products-layout {
        display: block;
    }
    
    .brand-promo-section {
        padding: 40px 20px;
        margin: 0;
    }
    
    .brand-promo-title {
        font-size: 22px;
    }
    
    .brand-promo-images {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }
    
    .brand-promo-img {
        height: 300px;
    }
    
    .social-media-section {
        padding: 40px 20px;
        margin: 0;
    }
    
    .social-placeholder {
        height: 250px;
    }
    
    .social-media-img {
        height: 250px;
    }
    
    .social-media-title {
        font-size: 22px;
    }
    
    .contact-us-section {
        padding: 50px 20px;
    }
    
    .contact-us-title {
        font-size: 22px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .footer {
        padding: 40px 0 0 0;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .promo-banner-section {
        padding: 20px 15px;
    }
    
    .banner-title {
        font-size: 24px;
    }
    
    .banner-subtitle {
        font-size: 24px;
    }
    
    .banner-cta {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .banner-tagline {
        font-size: 10px;
    }
    
    .top-banner {
        padding: 5px 0;
    }
    
    .banner-text {
        font-size: 12px;
    }
    
    .header {
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .brand-logo {
        height: 20px;
    }
    
    .main-content {
        padding: 0;
    }
    
    .product-section {
        padding: 0;
        max-width: 1200px;
    }
    
    .main-heading {
        font-size: 24px;
    }
    
    .subtitle {
        font-size: 14px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .product-item {
        max-width: 100%;
    }
    
    /* Modal responsive */
    .modal {
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .selection-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .selection-btn {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .modal-footer {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .modal-tabs {
        flex-wrap: wrap;
    }
    
    .tab {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .footer {
        padding: 30px 0 0 0;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        gap: 24px;
    }
    
    .footer-title {
        font-size: 20px;
    }
    
    .footer-logo {
        height: 24px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
    
    .product-filters {
        padding: 20px;
    }
    
    .filter-row {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .filter-option {
        flex: 1;
        min-width: calc(50% - 6px);
    }
    
    .category-container {
        padding: 0 15px;
        gap: 4px;
    }
    
    .category-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .brand-promo-section {
        padding: 30px 15px;
        margin: 0;
    }
    
    .brand-promo-title {
        font-size: 20px;
    }
    
    .brand-promo-img {
        height: 250px;
    }
    
    .brand-overlay {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .social-media-section {
        padding: 30px 15px;
        margin: 0;
    }
    
    .social-placeholder {
        height: 200px;
    }
    
    .social-media-img {
        height: 200px;
    }
    
    .social-media-title {
        font-size: 20px;
    }
    
    .social-media-btn {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .bts-section {
        padding: 30px 15px;
    }
    
    .bts-title {
        font-size: 20px;
    }
    
    .bts-video-wrap {
        max-width: 90%;
        margin: 0 15px;
    }
    
    .contact-us-section {
        padding: 40px 15px;
    }
    
    /* Product Modal Responsive */
    .product-modal {
        width: 95%;
        max-height: 95vh;
    }
    
    .product-modal-content {
        grid-template-columns: 1fr;
        min-height: auto;
        height: auto;
    }
    
    .product-modal-image {
        padding: 20px;
        min-height: 300px;
    }
    
    .product-modal-details {
        padding: 20px;
        max-height: 50vh;
        overflow-y: auto;
        height: auto;
    }
    
    .product-modal-title {
        font-size: 24px;
    }
    
    .product-modal-actions {
        gap: 10px;
    }
    
    .product-modal-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .contact-us-title {
        font-size: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .contact-submit-btn {
        padding: 12px 40px;
        font-size: 16px;
    }
}
