:root {
    --navy-blue: #1e3a8a;
    --charcoal: #374151;
    --teal: #0d9488;
    --orange: #ea580c;
    --light-gray: #f8fafc;
    --white: #ffffff;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --border-light: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--light-gray);
    font-weight: 400;
    max-width: 1600px;
    margin: auto;
}

.container12 {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    margin: 0;
    padding: 0;
}

.button-w-d {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    margin-bottom: 10px;
}

/* Design Toggle Button Styles */
.design-toggle-btn {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #0ab3e4;
    border-radius: 8px;
    font-weight: 600;
    max-width: 400px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: white;
    color: #0ab3e4;
}

.design-toggle-btn.active {
    background: #0ab3e4;

    color: white;
    box-shadow: 0px 2px 8px rgba(10, 179, 228, 0.6);

    transform: translateY(-1px);
}

.design-toggle-btn:hover:not(.active) {
    background: rgba(0, 123, 255, 0.1);
    border-color: #0ab3e4;
}



.whatsapp-inquiry {
    background: #25d366;
    background-image:
        radial-gradient(circle at 25% 25%, #22c55e 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, #16a34a 0%, transparent 50%);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* width: 100%; */
}

.whatsapp-inquiry::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.whatsapp-inquiry:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
    background: #25d366;
    background-image:
        radial-gradient(circle at 75% 75%, #16a34a 0%, transparent 50%),
        radial-gradient(circle at 25% 25%, #22c55e 0%, transparent 50%);
}

.whatsapp-inquiry:hover::before {
    left: 100%;
}

/* Product Header */
.product-header {
    /* display: flex;
    gap: 32px; */
    max-width: 96%;
    width: 96%;
    margin: 30px auto;
    background: var(--white);
    padding: 24px 24px 0 24px;
    border-radius: 12px;
    box-shadow: 0px 2px 8px rgba(10, 179, 228, 0.6);

}

.product-gallery {
    width: 50%;
    height: fit-content;
    border-right: 1px solid #0ab3e4;
    padding-right: 35px;
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.gallery-product {
    display: flex;
    gap: 32px;
    height: fit-content;
}

.main-image {
    width: 100%;
    aspect-ratio: 4/2.5;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(10, 179, 228, 0.6);

    transition: transform 0.3s ease;
    background: #f8f9fa;
    display: block;
}



.thumbnail-gallery {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding: 4px 0;
    scrollbar-width: thin;
}

.thumbnail-gallery::-webkit-scrollbar {
    height: 4px;
}

.thumbnail-gallery::-webkit-scrollbar-track {
    background: var(--border-light);
    border-radius: 2px;
}

.thumbnail-gallery::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 2px;
}

.thumbnail {
    min-width: 70px;
    width: 70px;
    height: 70px;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid #0ab3e4 !important;
    flex-shrink: 0;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: var(--teal);
    transform: translateY(-1px);
}

.product-info {
    padding: 0;
    width: 60%;
    height: fit-content;
}

.product-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--teal), #0891b2);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.product-title-section .product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    /* order: 1; */
}

.product-title-section .wishlist-btn {
    order: 2;
}

.product-title {
    order: 0;
}

.product-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #0ab3e4;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.025em;
    flex: 1;
}

.product-title-section .wishlist-btn {
    position: static;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 0, 0, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.product-title-section .wishlist-btn:hover {
    background: #ffffff;
            transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: #e11d48;
}

.product-title-section .wishlist-btn i {
    font-size: 18px;
    color: #6b7280;
    transition: all 0.3s ease;
}

.product-title-section .wishlist-btn:hover i {
    color: #e11d48;
}

.product-title-section .wishlist-btn.in-wishlist {
    background: #fef2f2;
    border-color: #e11d48;
}

.product-title-section .wishlist-btn.in-wishlist i {
    color: #e11d48;
    animation: heartBeat 0.4s ease-in-out;
}

.price-section {
    background: var(--white);
    /* border: 2px solid var(--border-light); */
    border-radius: 16px;
    padding: 5px 20px 5px 0px;
    display: flex;
    align-items: center;
    width: 300px;
    justify-content: space-between;
    margin: 5px 0;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    transition: all 0.3s ease;
    position: relative;
}


.price-with-tax {
    font-size: 25px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.strike-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1.1rem;

    font-weight: 500;
    /* margin-bottom: 12px; */
}

.tax-info {
    font-size: 0.875rem;
    color: var(--text-secondary);
    /* border: 2px solid var(--border-light); */
    font-weight: 400;
    background: var(--light-gray);
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
}

.form-group {
    margin: 16px 0;
    width: 100%;
}

.form-group label {
    display: block;
    font-weight: 600;
    padding: 5px 10px !important;
    font-size: 15px !important;
    color: black !important;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Input Styles */
.form-group input,
.form-group select,
.form-group textarea,
.form-group input[type="file"] {
    width: 100%;
    min-width: 150px;
    max-width: 300px !important;
    padding: 14px 16px;
    height: 40px !important;
    border: 2px solid var(--border-light);
    border-radius: 12px !important;
    font-size: 0.95rem !important;
    font-family: inherit;
    background: var(--white);
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-group input[type="file"] {
    width: 250px;
    padding: 12px 16px;
    cursor: pointer;
}

/* Input Focus States */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-group input[type="file"]:focus {
    outline: none;
    border: 2px solid #0ab3e4;
    box-shadow: 0px 2px 8px rgba(10, 179, 228, 0.6);

    transform: translateY(-1px);
}

/* Input Hover States */
.form-group input:hover:not(:focus),
.form-group select:hover:not(:focus),
.form-group textarea:hover:not(:focus) {
    border: 2px solid #0ab3e4;
    box-shadow: 0px 2px 8px rgba(10, 179, 228, 0.6);

}

/* Enhanced Select Styling */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23374151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d9488' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

/* Input Group Container */
.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group input {
    padding-right: 45px;
}

.input-group .input-icon {
    position: absolute;
    right: 14px;
    color: var(--text-secondary);
    font-size: 16px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.input-group input:focus+.input-icon {
    color: var(--teal);
}

/* Floating Label Style */
.form-group.floating-label {
    position: relative;
    margin-top: 24px;
}

.form-group.floating-label input,
.form-group.floating-label select,
.form-group.floating-label textarea {
    padding-top: 20px;
    padding-bottom: 8px;
}
.form-group{
    margin-right: 20px;
    margin-bottom: 10px !important;
}

.form-group.floating-label label {
    position: absolute;
    left: 16px;
    top: 16px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    padding: 0 4px;
    margin: 0;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
}

.form-group.floating-label input:focus+label,
.form-group.floating-label input:not(:placeholder-shown)+label,
.form-group.floating-label select:focus+label,
.form-group.floating-label select:not([value=""])+label,
.form-group.floating-label textarea:focus+label,
.form-group.floating-label textarea:not(:placeholder-shown)+label {
    top: -8px;
    left: 12px;
    font-size: 0.75rem;
    color: var(--teal);
    font-weight: 600;
}

/* Input Validation States */
.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Input Helper Text */
.form-helper {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-helper.error {
    color: #ef4444;
}

.form-helper.success {
    color: #10b981;
}

/* Search Input Style */
.search-input {
    position: relative;
    display: inline-block;
    width: 100%;
}

.search-input input {
    padding-left: 45px;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-input::before {
    content: '🔍';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    z-index: 1;
}

.search-input input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.15);
    border-radius: 12px;
}

/* File Input Enhancement */
.file-input-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-input-display {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 2px dashed var(--border-light);
    border-radius: 12px;
    background: var(--light-gray);
    transition: all 0.3s ease;
    min-height: 50px;
}

.file-input-wrapper:hover .file-input-display {
    border-color: var(--teal);
    background: rgba(13, 148, 136, 0.05);
}

.file-input-icon {
    font-size: 20px;
    color: var(--teal);
}

.file-input-text {
    flex: 1;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.file-input-wrapper.has-file .file-input-display {
    border-style: solid;
    border-color: var(--teal);
    background: rgba(13, 148, 136, 0.1);
}

.file-input-wrapper.has-file .file-input-text {
    color: var(--teal);
    font-weight: 500;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.radio-option {
    display: flex;
    align-items: center;
    font-size: 14px !important;
    padding: 8px 12px;
    font-weight: 300 !important;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 12px !important;
    cursor: pointer;
    transition: all 0.3s ease;

}

.radio-option:hover {
    border-color: #0ab3e4;
    box-shadow: 0px 2px 8px rgba(10, 179, 228, 0.6);

}

.radio-option input[type="radio"] {
    margin-right: 12px;
    box-shadow: none ! important;
    accent-color: var(--teal);
    transform: scale(0.5);
}

.upload-area {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.05), rgba(13, 148, 136, 0.1));
    border: 2px dashed var(--teal);
    border-radius: 8px;
    padding: 0px 10px;
    text-align: center;
    margin: 10px 0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), #f97316);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(234, 88, 12, 0.3);
    margin-top: 16px;
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

/* Tabs */
.tabs {
    background: white;
    border-radius: 16px;

    overflow: hidden;
}

.tab-buttons {
    display: flex;
    background: white;
    padding: 20px 12px 12px 12px;
    margin-top: 30px;
    gap: 8px;
    border-top: 1px solid black;
    overflow-x: auto;
    scrollbar-width: none;
}

.tab-buttons::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    flex: 1;
    max-width: 180px;
    min-width: 120px;
    padding: 14px 20px;
    background: rgba(223, 223, 223, 0.6);
    border: 2px solid rgba(226, 232, 240, 0.8);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.tab-btn:hover {
    background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.95));
   color: #0ab3e4;
    border-color: #0ab3e4;
box-shadow: 0px 2px 8px rgba(10, 179, 228, 0.6);
    transform: translateY(-1px);
}

.tab-btn:hover::before {
    left: 100%;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.95));
    color: #0ab3e4;
    border-color: #0ab3e4;
box-shadow: 0px 2px 8px rgba(10, 179, 228, 0.6);
    transform: translateY(-2px);
}



.tab-content {
    display: none;
    padding: 0px;

}

.tab-content.active {
    display: block;
}

/* Sections */
.section h3 {
    color: var(--navy-blue);
    margin-bottom: 24px;
    font-size: 1.75rem;
    font-weight: 600;
}

.section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Enhanced Description Section */
#description .section {
    background: white;
    border-radius: 20px;
    margin-bottom: 30px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}



#description .section h3 {
    color: var(--navy-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
    position: relative;
}



.description-content {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.description-content:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(13, 148, 136, 0.2);
}

.description-content p {
    color: var(--charcoal);
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
    text-align: justify;
    letter-spacing: 0.01em;
}

.description-content p:not(:last-child) {
    margin-bottom: 20px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.option-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.option-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    background: var(--light-gray);
}

.option-card-body {
    padding: 24px;
}

.option-card h4 {
    color: var(--navy-blue);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
    border: 1px solid rgba(226, 232, 240, 0.5);
    border-radius: 16px;
    padding: 24px;
}

.faq-question {
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.faq-answer {
    color: var(--text-secondary);
    padding-left: 0;
    line-height: 1.7;
}

.video-preview {
    margin-top: 24px;
}

.video-preview iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Enhanced Overview Section */
#overview .section {
    background: white;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
}





#overview .section h3 {
    color: var(--navy-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--navy-blue), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



#overview .section:hover h3::after {
    width: 120px;
}

/* Overview Content Container */
.overview-content {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 36px;
    border: 1px solid rgba(226, 232, 240, 0.5);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: center;
}

.overview-content:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(13, 148, 136, 0.2);
    transform: translateY(-1px);
}

/* Overview Image Responsive */
.overview-image {
    width: 100%;
    max-width: 400px;
    height: auto;

    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    margin-bottom: 0;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.06);
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.3);
}

.overview-image:hover {
    transform: scale(1.02) translateY(-2px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Overview Text Styling */
#overview .section p {
    color: var(--charcoal);
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
    text-align: justify;
    letter-spacing: 0.01em;
    position: relative;
}

#overview .section p:not(:last-child) {
    margin-bottom: 24px;
}

/* Add subtle text highlight effect */
#overview .section p::selection {
    background: rgba(13, 148, 136, 0.2);
    color: var(--navy-blue);
}


.drop-radio {
    display: flex;
    gap: 0px;
    flex-wrap: wrap;
}

.drop-radio .form-group {
    max-width: 200px;
}


/* Button Group Styles */
.button-group {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-top: 24px;
    /* flex-wrap: wrap; */
}

.button-group button {
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-buy-now {
    background: #0ab3e4;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-buy-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-buy-now:hover {
    transform: translateY(-3px);
    box-shadow: 0px 2px 8px rgba(10, 179, 228, 0.6);



}

.btn-buy-now:hover::before {
    left: 100%;
}


.btn-add-cart {
    background: #0ab3e4;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-add-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-add-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0px 2px 8px rgba(10, 179, 228, 0.6);

}

.btn-add-cart:hover::before {
    left: 100%;
}

/* Share Container */
.share-container {
    position: relative;
    display: inline-block;
}

.btn-share {
    background: #0ab3e4;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-share::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-share:hover {
    transform: translateY(-3px);
    box-shadow: 0px 2px 8px rgba(10, 179, 228, 0.6);

}

/* Video Thumbnail Styles */
.video-thumbnail {
    position: relative;
    background: #0ab3e4;

    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0ab3e4;

    opacity: 0.9;
}

.video-thumbnail-overlay {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .video-thumbnail-overlay {
    transform: scale(1.2);
}

.video-thumbnail:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

/* Video Container Styles */
.video-container {
    display: none;
    width: 100%;
    aspect-ratio: 4/2.5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.btn-share:hover::before {
    left: 100%;
}

.btn-share svg {
    transition: transform 0.3s ease;
}

.btn-share:hover svg {
    transform: scale(1.1);
}

/* Share Dropdown */
.share-dropdown {
    position: fixed;
    background: white;
    display: none;
    justify-content: space-between;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(226, 232, 240, 0.8);
    min-width: 200px;
    z-index: 999999;
    backdrop-filter: blur(10px);
}

.share-dropdown.active {
    display: flex;
}

.share-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
}

.share-dropdown .share-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 50px;
    max-width: 50px;
    min-width: 50px;
    padding: 16px 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 4px;
}

  /* Share Button Design - Matching Wishlist Button */
        .share-container {
            position: relative;
            display: inline-block;
        }
        
        .btn-share {
            background: #6b7280;
            border: 1px solid #6b7280;
            width: 44px;
            height: 43px;
            max-width: 44px;
            border-radius: 12px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .btn-share:hover {
            background: #4b5563;
            transform: scale(1.1);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }
        
        .btn-share svg {
            color: white;
            transition: all 0.2s ease;
        }
        
        .btn-share:hover svg {
            color: white;
        }


.share-option:hover {
    background: rgba(13, 148, 136, 0.1);
    color: #0ab3e4;
    transform: translateX(2px);
}

.share-option svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.share-option:hover svg {
    transform: scale(1.1);
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--teal), #0891b2);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 8px 32px rgba(13, 148, 136, 0.3);
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification::before {
    content: '✓';
    margin-right: 8px;
    font-weight: bold;
}

.upload-file {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}


#options .section {
    background: white;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}



#options .section h3 {
    color: var(--navy-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
    position: relative;
}

.options-content {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.options-content:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(13, 148, 136, 0.2);
}

.options-content p {
    color: var(--charcoal);
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
    text-align: justify;
    letter-spacing: 0.01em;
}

.options-content p:not(:last-child) {
    margin-bottom: 20px;
}


#specifications .section {
    background: white;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
}


#specifications .section h3 {
    color: var(--navy-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--navy-blue), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.specifications-content {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 36px;
    border: 1px solid rgba(226, 232, 240, 0.5);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: start;
}

.specifications-content:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(13, 148, 136, 0.2);
    transform: translateY(-1px);
}

.specifications-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.06);
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.3);
}

.specifications-image:hover {
    transform: scale(1.02) translateY(-2px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.08);
}

.specifications-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.specifications-text p {
    color: var(--charcoal);
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
    text-align: justify;
    letter-spacing: 0.01em;
    position: relative;
}

.specifications-text p::selection {
    background: rgba(13, 148, 136, 0.2);
    color: var(--navy-blue);
}

.cdr-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--teal), #0891b2);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.25);
    border: 1px solid rgba(13, 148, 136, 0.3);
    position: relative;
    overflow: hidden;
}

.cdr-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cdr-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(13, 148, 136, 0.35);
    background: linear-gradient(135deg, #0f766e, #0e7490);
}

.cdr-download-btn:hover::before {
    left: 100%;
}

.cdr-download-btn svg {
    transition: transform 0.3s ease;
}

.cdr-download-btn:hover svg {
    transform: scale(1.1) rotate(5deg);
}



#faq .section {
    background: white;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}



#faq .section h3 {
    color: var(--navy-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
    position: relative;
}

.faq-content {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-content:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(13, 148, 136, 0.2);
}

.faq-content p {
    color: var(--charcoal);
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
    text-align: justify;
    letter-spacing: 0.01em;
}

.faq-content p:not(:last-child) {
    margin-bottom: 20px;
}


#video .section {
    background: white;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}



#video .section h3 {
    color: var(--navy-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
    position: relative;
}

.video-content {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.video-content:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(13, 148, 136, 0.2);
}

.video-content p {
    color: var(--charcoal);
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
    text-align: justify;
    letter-spacing: 0.01em;
}

.video-content p:not(:last-child) {
    margin-bottom: 20px;
}
.action-buttons{
    display: flex;
    gap: 15px;
}
/* ===== RESPONSIVE CSS FOR MOBILE ===== */

/* Tablet and Small Desktop */
@media (max-width: 1024px) {
    .product-header {
        width: 98%;
        max-width: 98%;
        margin: 20px auto;
        padding: 20px;
    }
    
    .gallery-product {
        flex-direction: column;
        gap: 20px;
    }
    
    .product-gallery {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #0ab3e4;
        padding-right: 0;
        padding-bottom: 20px;
        position: static;
    }
    
    .product-info {
        width: 100%;
        padding-top: 20px;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .specifications-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .product-header {
        width: 100%;
        max-width: 100%;
        margin: 10px auto;
        padding: 16px;
        border-radius: 8px;
    }
    
    .button-w-d {
        flex-direction: column;
        gap: 12px;
    }
    
    .design-toggle-btn {
        max-width: 100%;
        padding: 14px 16px;
        font-size: 1rem;
    }
    
    .product-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .product-title-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .product-title-section .product-rating {
        order: 2;
    }
    
    .product-title-section .wishlist-btn {
        order: 1;
        align-self: flex-end;
    }
    
    .price-section {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 15px 0;
    }
    
    .price-with-tax {
        font-size: 22px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        max-width: 100%;
        min-width: 100%;
    }
    
    .drop-radio {
        flex-direction: column;
        gap: 12px;

    }
    
    .drop-radio .form-group {
        max-width: 100%;
        margin-bottom: 0 !important;
    }
    
    .upload-file {
        flex-direction: column;
        gap: 12px;
    }
    
    .button-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .button-group button {
        width: 100%;
        min-width: auto;
    }
    
    .whatsapp-inquiry {
        width: 100%;
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .tab-buttons {
        padding: 16px 8px 8px 8px;
        gap: 6px;
    }
    
    .tab-btn {
        min-width: 100px;
        max-width: 150px;
        padding: 12px 16px;
        font-size: 0.8rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .overview-content,
    .specifications-content,
    .description-content,
    .options-content,
    .faq-content,
    .video-content {
        padding: 20px;
    }
    
    .thumbnail-gallery {
        justify-content: center;
    }
    
    .thumbnail {
        min-width: 60px;
        width: 60px;
        height: 60px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .product-header {
        margin: 5px auto;
        padding: 12px;
        border-radius: 6px;
                margin-top: 40px;
    }
    
    .product-title {
        font-size: clamp(1.25rem, 6vw, 1.75rem);
        line-height: 1.3;
    }
    #overview .section{
        padding: 0;
        margin: 0;
    }
    #overview .section p{
        font-size: 14px;
    }
    #options .section{
        padding: 0;
        margin: 0;
    }
    .option-card-body{
        padding: 0;
    }

    .option-card{
        padding: 0;
    }

    #specifications .section{
        padding: 0;
        margin: 0;
    }
    #faq .section{
        padding: 0;
        margin: 0;
    }
    .product-category {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
    
    .price-with-tax {
        font-size: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .strike-price {
        font-size: 1rem;
    }
    
    .tax-info {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .form-group label {
        font-size: 13px !important;
        padding: 3px 8px !important;
    }
    .drop-radio{
        gap: 0;
    }

    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        height: 38px !important;
        font-size: 0.9rem !important;
        border-radius: 8px !important;
    }
    
    .form-group input[type="file"] {
        width: 100%;
        padding: 10px 14px;
    }
    .action-buttons{
        position: absolute !important;
    }
    .product-title{
        max-width: 150px !important;
    }
    .radio-option {
        padding: 6px 10px;
        font-size: 13px !important;
        border-radius: 8px !important;
    }
    
    .button-group button {
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 8px;
    }
    
    .whatsapp-inquiry {
        padding: 14px 16px;
        font-size: 14px;
        border-radius: 8px;
    }
    
    .tab-buttons {
        padding: 12px 6px 6px 6px;
        gap: 4px;
    }
    
    .tab-btn {
        min-width: 80px;
        max-width: 120px;
        padding: 10px 12px;
        font-size: 0.75rem;
        border-radius: 6px;
    }
    
    .overview-content,
    .specifications-content,
    .description-content,
    .options-content,
    .faq-content,
    .video-content {
        padding: 16px;
        border-radius: 8px;
    }
    
    .overview-image,
    .specifications-image {
        max-width: 100%;
        border-radius: 8px;
    }
    
    .section h3 {
        font-size: 1.25rem;
        margin-bottom: 16px;
    }
    
    .section p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .thumbnail {
        min-width: 50px;
        width: 50px;
        height: 50px;
    }
    
    .thumbnail-gallery {
        gap: 6px;
        margin-top: 8px;
    }
    
    .main-image {
        border-radius: 6px;
    }
    
    .faq-item {
        padding: 16px;
        border-radius: 8px;
    }
    
    .faq-question {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .video-preview iframe {
        height: 250px;
        border-radius: 8px;
    }
    
    .video-container {
        aspect-ratio: 16/9;
        border-radius: 6px;
    }
    
    .cdr-download-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .share-dropdown {
        min-width: 160px;
        border-radius: 8px;
    }
    
    .share-option {
        padding: 12px 16px;
        font-size: 13px;
        border-radius: 6px;
    }
    
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 6px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .product-header {
        padding: 8px;
        margin-top: 40px;
    }
    
    .product-title {
        font-size: clamp(1.1rem, 7vw, 1.5rem);
    }
    
    .price-with-tax {
        font-size: 18px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        height: 36px !important;
        font-size: 0.85rem !important;
    }
    
    .button-group button {
        padding: 10px 16px;
        font-size: 13px;
    }
    .drop-radio{
        gap: 0;
    }
    
    .whatsapp-inquiry {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .tab-btn {
        min-width: 70px;
        max-width: 100px;
        padding: 8px 10px;
        font-size: 0.7rem;
    }
    
    
    .overview-content,
    .specifications-content,
    .description-content,
    .options-content,
    .faq-content,
    .video-content {
        padding: 12px;
    }
    
    .section h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .section p {
        font-size: 0.9rem;
    }
    
    .thumbnail {
        min-width: 45px;
        width: 45px;
        height: 45px;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .product-header {
        margin: 5px auto;
    }
    
    .gallery-product {
        flex-direction: row;
    }
    
    .product-gallery {
        width: 50%;
        border-right: 1px solid #0ab3e4;
        border-bottom: none;
        padding-right: 20px;
        padding-bottom: 0;
    }
    
    .product-info {
        width: 50%;
        padding-top: 0;
        padding-left: 20px;
    }
    
    .overview-content,
    .specifications-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}