/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 21 2026 | 10:07:33 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f8f8;
            padding: 20px;
        }

        .wamad44r-product-section {
            max-width: 1400px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .wamad44r-product-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            padding: 40px;
        }

        /* Image Section */
        .wamad44r-image-section {
            position: relative;
        }

        .wamad44r-product-image {
            width: 100%;
            height: 600px;
            object-fit: cover;
            border-radius: 8px;
        }

        .wamad44r-zoom-icon {
            position: absolute;
            top: 20px;
            left: 20px;
            background: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        /* Product Info Section */
        .wamad44r-info-section {
            padding: 20px 0;
        }

        .wamad44r-brand {
            font-size: 12px;
            letter-spacing: 2px;
            color: #666;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .wamad44r-product-title {
            font-size: 42px;
            font-weight: 300;
            line-height: 1.3;
            margin-bottom: 30px;
            color: #1a1a1a;
        }

        .wamad44r-price {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .wamad44r-shipping {
            font-size: 14px;
            color: #666;
            margin-bottom: 30px;
        }

        .wamad44r-shipping a {
            color: #1a1a1a;
            text-decoration: underline;
        }

        /* Options */
        .wamad44r-option-group {
            margin-bottom: 30px;
        }

        .wamad44r-option-label {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 12px;
            color: #1a1a1a;
        }

        .wamad44r-options {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .wamad44r-option-btn {
            padding: 12px 28px;
            border: 2px solid #e0e0e0;
            background: white;
            border-radius: 30px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .wamad44r-option-btn:hover {
            border-color: #1a1a1a;
        }

        .wamad44r-option-btn.active {
            background: #1a1a1a;
            color: white;
            border-color: #1a1a1a;
        }

        /* Image Swatches for Color Options */
        .wamad44r-image-options {
            display: flex;
            gap: 0px;
            flex-wrap: nowrap; /*wrap*/
        }

        .wamad44r-image-option {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            padding: 8px;
            border: 2px solid transparent;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .wamad44r-image-option:hover {
            border-color: #e0e0e0;
        }

        .wamad44r-image-option.active {
            border-color: #1a1a1a;
            background: #f9f9f9;
        }

        .wamad44r-option-image {
            width: 40px;
            height: 40px;
            object-fit: cover;
            border-radius: 100% !important;
            border: 1px solid #e0e0e0;
        }

        .wamad44r-option-name {
            font-size: 13px;
            color: #666;
            font-weight: 500;
        }

        .wamad44r-image-option.active .wamad44r-option-name {
            color: #1a1a1a;
            font-weight: 600;
        }

        /* Quantity */
        .wamad44r-quantity-group {
            margin-bottom: 30px;
        }

        .wamad44r-quantity-controls {
            display: flex;
            align-items: center;
            border: 2px solid #e0e0e0;
            border-radius: 4px;
            width: fit-content;
        }

        .wamad44r-qty-btn {
            width: 50px;
            height: 50px;
            border: none;
            background: white;
            cursor: pointer;
            font-size: 20px;
            color: #666;
            transition: all 0.2s;
        }

        .wamad44r-qty-btn:hover {
            color: #1a1a1a;
            background: #f5f5f5;
        }

        .wamad44r-qty-input {
            width: 80px;
            height: 50px;
            border: none;
            text-align: center;
            font-size: 16px;
            font-weight: 500;
        }

        /* Quantity + Cart Row */
        .wamad44r-quantity-cart-row {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        /* Action Buttons */
        .wamad44r-actions {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }

        .wamad44r-btn {
            padding: 14px 28px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
            font-weight: 500;
            white-space: nowrap;
        }

        .wamad44r-add-to-cart {
            background: #1a1a1a;
            color: white;
            padding: 14px 28px;
            font-size: 15px;
        }

        .wamad44r-add-to-cart:hover {
            background: #333;
        }

        .wamad44r-add-to-cart:disabled {
            background: #ccc;
            cursor: not-allowed;
        }

        .wamad44r-buy-now {
            background: white;
            color: #1a1a1a;
            border: 2px solid #1a1a1a;
        }

        .wamad44r-buy-now:hover {
            background: #f5f5f5;
        }

        /* Thumbnail Gallery */
        .wamad44r-thumbnail-gallery {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            flex-wrap: wrap;
        }

        .wamad44r-thumbnail {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 4px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .wamad44r-thumbnail:hover {
            border-color: #1a1a1a;
            opacity: 0.8;
        }

        .wamad44r-thumbnail.active {
            border-color: #1a1a1a;
        }

        /* Share Section */
        .wamad44r-share {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0;
        }

        .wamad44r-share-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 14px;
            color: #666;
        }

        .wamad44r-details-link {
            color: #1a1a1a;
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Loading State */
        .wamad44r-loading {
            opacity: 0.6;
            pointer-events: none;
        }

        /* Success Message */
        .wamad44r-success-msg {
            background: #4caf50;
            color: white;
            padding: 12px;
            border-radius: 4px;
            margin-bottom: 15px;
            display: none;
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from {
                transform: translateY(-20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Responsive */
        @media (max-width: 968px) {
            .wamad44r-product-container {
                grid-template-columns: 1fr;
            }

            .wamad44r-product-title {
                font-size: 32px;
            }
        }

        @media (max-width: 640px) {
            .wamad44r-product-container {
                padding: 20px;
                gap: 20px;
            }

            .wamad44r-product-title {
                font-size: 28px;
            }

            .wamad44r-options {
                flex-direction: row; /*column*/
            }

            .wamad44r-option-btn {
                width: 100%;
            }

            .wamad44r-quantity-cart-row {
                flex-direction: column;
                align-items: stretch;
            }

            .wamad44r-quantity-controls {
                width: 100%;
            }

            .wamad44r-add-to-cart {
                width: 100%;
            }
        }
    